Removed old logo from Core, Growl uses new icon.

This commit is contained in:
Mark McDowall
2013-09-09 08:13:54 -07:00
parent 529f65339f
commit c7bdf4148b
4 changed files with 2 additions and 5 deletions
@@ -25,7 +25,7 @@ namespace NzbDrone.Core.Notifications.Growl
public GrowlService()
{
_notificationTypes = GetNotificationTypes();
_growlApplication.Icon = "https://github.com/NzbDrone/NzbDrone/raw/master/NzbDrone.Core/NzbDrone.jpg";
_growlApplication.Icon = "https://raw.github.com/NzbDrone/NzbDrone/master/Logo/64.png";
}
public void SendNotification(string title, string message, string notificationTypeName, string hostname, int port, string password)
@@ -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/develop/Logo/64.png"),
new JProperty("image", "https://raw.github.com/NzbDrone/NzbDrone/master/Logo/64.png"),
new JProperty("displaytime", settings.DisplayTime * 1000));
var postJson = BuildJsonRequest("GUI.ShowNotification", parameters);