From 4ad28bb6f687a987f73c4220a2d4999e77783bbc Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 5 Aug 2014 13:51:06 -0700 Subject: [PATCH] Pushover default to Normal --- src/NzbDrone.Core/Notifications/Pushover/PushoverSettings.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/NzbDrone.Core/Notifications/Pushover/PushoverSettings.cs b/src/NzbDrone.Core/Notifications/Pushover/PushoverSettings.cs index 2bd17b79d..0b0276e85 100644 --- a/src/NzbDrone.Core/Notifications/Pushover/PushoverSettings.cs +++ b/src/NzbDrone.Core/Notifications/Pushover/PushoverSettings.cs @@ -18,6 +18,11 @@ namespace NzbDrone.Core.Notifications.Pushover { private static readonly PushoverSettingsValidator Validator = new PushoverSettingsValidator(); + public PushoverSettings() + { + Priority = 0; + } + [FieldDefinition(0, Label = "API Key", HelpLink = "https://pushover.net/apps/clone/nzbdrone")] public String ApiKey { get; set; }