Fixed XBMC notification image

This commit is contained in:
Mark McDowall
2013-08-12 20:12:49 -07:00
parent 47197b802c
commit 4a9e2894ef
5 changed files with 2 additions and 61 deletions

View File

@@ -26,7 +26,7 @@ namespace NzbDrone.Core.Notifications.Xbmc
var parameters = new JObject(
new JProperty("title", title),
new JProperty("message", message),
new JProperty("image", "https://raw.github.com/NzbDrone/NzbDrone/vnext/NzbDrone.Core/NzbDrone.jpg"),
new JProperty("image", "https://raw.github.com/NzbDrone/NzbDrone/develop/Logo/64.png"),
new JProperty("displaytime", settings.DisplayTime * 1000));
var postJson = BuildJsonRequest("GUI.ShowNotification", parameters);