From d5bad8c6ef644dae4a188d663653fc4a26f7ad64 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 8 Dec 2013 20:59:46 -0800 Subject: [PATCH] long not int --- src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs b/src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs index fe1567f3e..93d17bb62 100644 --- a/src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs +++ b/src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs @@ -7,14 +7,14 @@ namespace NzbDrone.Core.Notifications.PushBullet { public interface IPushBulletProxy { - void SendNotification(string title, string message, string apiKey, int deviceId); + void SendNotification(string title, string message, string apiKey, long deviceId); } public class PushBulletProxy : IPushBulletProxy, IExecute { private const string URL = "https://api.pushbullet.com/api/pushes"; - public void SendNotification(string title, string message, string apiKey, int deviceId) + public void SendNotification(string title, string message, string apiKey, long deviceId) { var client = new RestClient(URL); var request = new RestRequest(Method.POST);