From 5267e15c172fef808b53a15cc404a14edaeebc52 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Sun, 21 Nov 2021 12:06:42 -0600 Subject: [PATCH] Fixed: Images for Connections using old branch name --- src/NzbDrone.Core/Notifications/Boxcar/BoxcarProxy.cs | 2 +- src/NzbDrone.Core/Notifications/Discord/Discord.cs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/Boxcar/BoxcarProxy.cs b/src/NzbDrone.Core/Notifications/Boxcar/BoxcarProxy.cs index b25f3cea9..e372bbaae 100644 --- a/src/NzbDrone.Core/Notifications/Boxcar/BoxcarProxy.cs +++ b/src/NzbDrone.Core/Notifications/Boxcar/BoxcarProxy.cs @@ -76,7 +76,7 @@ namespace NzbDrone.Core.Notifications.Boxcar .AddFormParameter("notification[title]", title) .AddFormParameter("notification[long_message]", message) .AddFormParameter("notification[source_name]", BuildInfo.AppName) - .AddFormParameter("notification[icon_url]", "https://raw.githubusercontent.com/Sonarr/Sonarr/phantom-develop/Logo/64.png") + .AddFormParameter("notification[icon_url]", "https://raw.githubusercontent.com/Sonarr/Sonarr/develop/Logo/64.png") .Build(); _httpClient.Post(request); diff --git a/src/NzbDrone.Core/Notifications/Discord/Discord.cs b/src/NzbDrone.Core/Notifications/Discord/Discord.cs index 40eec4698..e3af799c6 100644 --- a/src/NzbDrone.Core/Notifications/Discord/Discord.cs +++ b/src/NzbDrone.Core/Notifications/Discord/Discord.cs @@ -34,7 +34,7 @@ namespace NzbDrone.Core.Notifications.Discord Author = new DiscordAuthor { Name = Settings.Author.IsNullOrWhiteSpace() ? Environment.MachineName : Settings.Author, - IconUrl = "https://raw.githubusercontent.com/Sonarr/Sonarr/phantom-develop/Logo/256.png" + IconUrl = "https://raw.githubusercontent.com/Sonarr/Sonarr/develop/Logo/256.png" }, Url = $"http://thetvdb.com/?tab=series&id={series.TvdbId}", Description = "Episode Grabbed", @@ -125,7 +125,7 @@ namespace NzbDrone.Core.Notifications.Discord Author = new DiscordAuthor { Name = Settings.Author.IsNullOrWhiteSpace() ? Environment.MachineName : Settings.Author, - IconUrl = "https://raw.githubusercontent.com/Sonarr/Sonarr/phantom-develop/Logo/256.png" + IconUrl = "https://raw.githubusercontent.com/Sonarr/Sonarr/develop/Logo/256.png" }, Url = $"http://thetvdb.com/?tab=series&id={series.TvdbId}", Description = isUpgrade ? "Episode Upgraded" : "Episode Imported", @@ -281,7 +281,7 @@ namespace NzbDrone.Core.Notifications.Discord Author = new DiscordAuthor { Name = Settings.Author.IsNullOrWhiteSpace() ? Environment.MachineName : Settings.Author, - IconUrl = "https://raw.githubusercontent.com/Sonarr/Sonarr/phantom-develop/Logo/256.png" + IconUrl = "https://raw.githubusercontent.com/Sonarr/Sonarr/develop/Logo/256.png" }, Title = healthCheck.Source.Name, Description = healthCheck.Message,