From 48a92696e98b60564af8b9e8af1fe333b1b3eff5 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 2 Apr 2014 17:17:38 -0700 Subject: [PATCH] New: PushBullet to all devices (leave device id blank) --- .../Notifications/PushBullet/PushBulletSettings.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/PushBullet/PushBulletSettings.cs b/src/NzbDrone.Core/Notifications/PushBullet/PushBulletSettings.cs index 7723a81f0..b20591b51 100644 --- a/src/NzbDrone.Core/Notifications/PushBullet/PushBulletSettings.cs +++ b/src/NzbDrone.Core/Notifications/PushBullet/PushBulletSettings.cs @@ -11,7 +11,6 @@ namespace NzbDrone.Core.Notifications.PushBullet public PushBulletSettingsValidator() { RuleFor(c => c.ApiKey).NotEmpty(); - RuleFor(c => c.DeviceId).NotEmpty(); } } @@ -22,7 +21,7 @@ namespace NzbDrone.Core.Notifications.PushBullet [FieldDefinition(0, Label = "API Key", HelpLink = "https://www.pushbullet.com/")] public String ApiKey { get; set; } - [FieldDefinition(1, Label = "Device ID", HelpText = "device_iden in the device's URL on pubshbullet.com")] + [FieldDefinition(1, Label = "Device ID", HelpText = "device_iden in the device's URL on pubshbullet.com (leave blank to send to all devices)")] public String DeviceId { get; set; } public bool IsValid