Fixed XBMC notification logo

This commit is contained in:
Mark McDowall 2014-02-18 22:25:44 -08:00
commit c5a3b714e6
5 changed files with 1 additions and 1 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/master/Logo/64.png"),
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);