From 81c5ec72d64af83536f46c8fe2e6521a508c13b8 Mon Sep 17 00:00:00 2001 From: Nolan Kovacs Date: Thu, 26 Mar 2026 09:47:01 -0400 Subject: [PATCH] Fix Discord User-Agent header in health monitor --- health_monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/health_monitor.py b/health_monitor.py index 9abf7e8..449f66c 100644 --- a/health_monitor.py +++ b/health_monitor.py @@ -98,7 +98,7 @@ def alert(message: str, tier: int = 2) -> None: req = urllib.request.Request( DISCORD_WEBHOOK, data=payload, - headers={"Content-Type": "application/json"}, + headers={"Content-Type": "application/json", "User-Agent": "DiscordBot (https://verimundsolutions.com, 1.0)"}, method="POST", ) urllib.request.urlopen(req, timeout=10)