diff --git a/app/client/modules/notifications/components/notification-forms/pushover-form.tsx b/app/client/modules/notifications/components/notification-forms/pushover-form.tsx
index e49dd2e6..0351afe4 100644
--- a/app/client/modules/notifications/components/notification-forms/pushover-form.tsx
+++ b/app/client/modules/notifications/components/notification-forms/pushover-form.tsx
@@ -71,9 +71,11 @@ export const PushoverForm = ({ form }: Props) => {
+ Lowest (-2)
Low (-1)
Normal (0)
High (1)
+ Emergency (2)
Message priority level.
diff --git a/app/schemas/notifications.ts b/app/schemas/notifications.ts
index e5cc379a..2411ddd8 100644
--- a/app/schemas/notifications.ts
+++ b/app/schemas/notifications.ts
@@ -64,7 +64,7 @@ export const pushoverNotificationConfigSchema = type({
userKey: "string",
apiToken: "string",
devices: "string?",
- priority: "-1 | 0 | 1",
+ priority: "-2 | -1 | 0 | 1 | 2",
});
export const telegramNotificationConfigSchema = type({