From 8c43db2abf3b504dbb789369c9a9ac92bb820722 Mon Sep 17 00:00:00 2001 From: 0xsysr3ll <31414959+0xSysR3ll@users.noreply.github.com> Date: Fri, 4 Jul 2025 22:25:18 +0200 Subject: [PATCH] fix(gotify): notifications blocked when priority set to 0 (#1763) This PR fixes an issue where Gotify notifications would not be sent when the priority was configured to 0. --- server/lib/notifications/agents/gotify.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/lib/notifications/agents/gotify.ts b/server/lib/notifications/agents/gotify.ts index 514281f7..046bb44f 100644 --- a/server/lib/notifications/agents/gotify.ts +++ b/server/lib/notifications/agents/gotify.ts @@ -35,7 +35,7 @@ class GotifyAgent settings.enabled && settings.options.url && settings.options.token && - settings.options.priority + settings.options.priority !== undefined ) { return true; }