Merge branch 'master' of https://github.com/jmelen/SickRage into dev

This commit is contained in:
Adam 2014-09-01 10:31:26 +08:00
commit 73cfb28234
1 changed files with 4 additions and 3 deletions

View File

@ -20,7 +20,7 @@
import base64
from httplib import HTTPSConnection, HTTPException
from urllib import urlencode
import json
from ssl import SSLError
import sickbeard
from sickbeard import logger, common
@ -97,8 +97,9 @@ class PushbulletNotifier:
'body': message.encode('utf-8'),
'device_iden': pushbullet_device,
'type': notificationType}
http_handler.request(method, uri, body=urlencode(data),
headers={'Authorization': 'Basic %s' % authString})
data = json.dumps(data)
http_handler.request(method, uri, body=data,
headers={'Content-Type': 'application/json', 'Authorization': 'Basic %s' % authString})
pass
except (SSLError, HTTPException):
return False