From fb4e9fed85805ecbe2c5fd7bdebb23d4a3dd75e4 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 19 Nov 2013 17:36:50 -0800 Subject: [PATCH] Changed pushbullet url to api.pushbullet.com Fixed: PushBullet URL --- src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs b/src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs index edeed98c4..fe1567f3e 100644 --- a/src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs +++ b/src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs @@ -12,7 +12,7 @@ namespace NzbDrone.Core.Notifications.PushBullet public class PushBulletProxy : IPushBulletProxy, IExecute { - private const string URL = "https://www.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) {