1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-25 15:33:11 +00:00

long not int

This commit is contained in:
Mark McDowall 2013-12-08 20:59:46 -08:00
parent f95f7c2320
commit d5bad8c6ef

View file

@ -7,14 +7,14 @@ namespace NzbDrone.Core.Notifications.PushBullet
{ {
public interface IPushBulletProxy 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<TestPushBulletCommand> public class PushBulletProxy : IPushBulletProxy, IExecute<TestPushBulletCommand>
{ {
private const string URL = "https://api.pushbullet.com/api/pushes"; 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 client = new RestClient(URL);
var request = new RestRequest(Method.POST); var request = new RestRequest(Method.POST);