From 877c35cb164d4c71700c28e7499600ffd5b20c21 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 26 Jul 2014 21:46:00 +0200 Subject: [PATCH] Fixed: pushbullet notifications don't work Apparently the pushpubllet api URL has changed. I suspect it will be the case, in the future, to update the devices url (and maybe code) as well. --- sickbeard/notifiers/pushbullet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sickbeard/notifiers/pushbullet.py b/sickbeard/notifiers/pushbullet.py index 81c51bc5..b4fa360c 100644 --- a/sickbeard/notifiers/pushbullet.py +++ b/sickbeard/notifiers/pushbullet.py @@ -67,7 +67,7 @@ class PushbulletNotifier: pushbullet_device = sickbeard.PUSHBULLET_DEVICE if method == 'POST': - uri = '/api/pushes' + uri = '/v2/pushes' else: uri = '/api/devices'