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.
This commit is contained in:
0xsysr3ll
2025-07-04 22:25:18 +02:00
committed by GitHub
parent b83367cbf2
commit 8c43db2abf

View File

@@ -35,7 +35,7 @@ class GotifyAgent
settings.enabled &&
settings.options.url &&
settings.options.token &&
settings.options.priority
settings.options.priority !== undefined
) {
return true;
}