1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-01 12:08:55 +00:00

Fixed: Use develop logo for Kodi notifications

Fixes #5256
This commit is contained in:
Qstick 2022-11-29 19:48:38 -06:00
parent 095dcac90b
commit c9b483bdf7

View file

@ -35,7 +35,7 @@ namespace NzbDrone.Core.Notifications.Xbmc
public void Notify(XbmcSettings settings, string title, string message)
{
ProcessRequest(settings, "GUI.ShowNotification", title, message, "https://raw.github.com/Sonarr/Sonarr/phantom-develop/Logo/64.png", settings.DisplayTime * 1000);
ProcessRequest(settings, "GUI.ShowNotification", title, message, "https://raw.github.com/Sonarr/Sonarr/develop/Logo/64.png", settings.DisplayTime * 1000);
}
public string UpdateLibrary(XbmcSettings settings, string path)