diff --git a/server/notification-providers/ntfy.js b/server/notification-providers/ntfy.js index ab0df4247..e44e7e868 100644 --- a/server/notification-providers/ntfy.js +++ b/server/notification-providers/ntfy.js @@ -37,8 +37,6 @@ class Ntfy extends NotificationProvider { let tags = []; let status = "unknown"; let priority = notification.ntfyPriority || 4; - // defaults to max(priority + 1, 5) - let downPriority = notification.ntfyPriorityDown || (priority === 5 ? priority : priority + 1); if ("status" in heartbeatJSON) { if (heartbeatJSON.status === DOWN) { tags = [ "red_circle" ];