Inspect Discord webhook response

This commit is contained in:
rubenwardy 2023-05-14 17:16:56 +01:00
parent adbbaf93c6
commit 1a173153c8

@ -13,6 +13,7 @@
# #
# You should have received a copy of the GNU Affero General Public License # You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>. # along with this program. If not, see <https://www.gnu.org/licenses/>.
import sys
from typing import Optional from typing import Optional
import requests import requests
@ -48,4 +49,7 @@ def post_discord_webhook(username: Optional[str], content: str, is_queue: bool,
json["embeds"] = [embed] json["embeds"] = [embed]
requests.post(discord_url, json=json) res = requests.post(discord_url, json=json, headers={"Accept": "application/json"})
if res.status_code != 200:
print("Failed to submit Discord webhook", res.json(), file=sys.stderr)
res.raise_for_status()