From a7e210bfb3a430bb54b1af5f8a8dbba6d9506af1 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 8 Dec 2013 20:57:45 -0800 Subject: [PATCH] Use Int64 for PushBullet device ID Fixed: Support for large Push Bullet device IDs --- .../Notifications/PushBullet/PushBulletSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/PushBullet/PushBulletSettings.cs b/src/NzbDrone.Core/Notifications/PushBullet/PushBulletSettings.cs index 3e1f75ca1..1525f6413 100644 --- a/src/NzbDrone.Core/Notifications/PushBullet/PushBulletSettings.cs +++ b/src/NzbDrone.Core/Notifications/PushBullet/PushBulletSettings.cs @@ -23,7 +23,7 @@ namespace NzbDrone.Core.Notifications.PushBullet public String ApiKey { get; set; } [FieldDefinition(1, Label = "Device ID")] - public Int32 DeviceId { get; set; } + public Int64 DeviceId { get; set; } public bool IsValid {