From 4d8fd145cf43d4f374f4cdcfebae69b789e7032d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Helle=C5=9Ben?= Date: Mon, 16 Mar 2026 04:53:39 +0100 Subject: [PATCH 1/2] Update label for URL resolution option in webhook entries template --- discord_rss_bot/templates/webhook_entries.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord_rss_bot/templates/webhook_entries.html b/discord_rss_bot/templates/webhook_entries.html index f0bc970..f808e77 100644 --- a/discord_rss_bot/templates/webhook_entries.html +++ b/discord_rss_bot/templates/webhook_entries.html @@ -97,7 +97,7 @@ id="resolve_urls" name="resolve_urls" {% if resolve_urls %}checked{% endif %} /> - +
Date: Mon, 16 Mar 2026 05:00:05 +0100 Subject: [PATCH 2/2] Reduce max_instances for send_to_discord scheduler to 1 --- discord_rss_bot/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord_rss_bot/main.py b/discord_rss_bot/main.py index ca3894c..594ab3e 100644 --- a/discord_rss_bot/main.py +++ b/discord_rss_bot/main.py @@ -163,7 +163,7 @@ async def lifespan(app: FastAPI) -> AsyncGenerator[None]: trigger="interval", minutes=1, id="send_to_discord", - max_instances=3, + max_instances=1, next_run_time=datetime.now(tz=UTC), ) scheduler.start()