From 22f044844c33187450dcc2d6b329ad3e1d241e74 Mon Sep 17 00:00:00 2001 From: Qstick Date: Thu, 12 Aug 2021 20:59:55 -0400 Subject: [PATCH] Fix Phantom branch reference in Join proxy --- src/NzbDrone.Core/Notifications/Join/JoinProxy.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/Join/JoinProxy.cs b/src/NzbDrone.Core/Notifications/Join/JoinProxy.cs index 9fe1a8298..afe077a76 100644 --- a/src/NzbDrone.Core/Notifications/Join/JoinProxy.cs +++ b/src/NzbDrone.Core/Notifications/Join/JoinProxy.cs @@ -94,8 +94,8 @@ namespace NzbDrone.Core.Notifications.Join var request = requestBuilder.AddQueryParam("apikey", settings.ApiKey) .AddQueryParam("title", title) .AddQueryParam("text", message) - .AddQueryParam("icon", "https://cdn.rawgit.com/Sonarr/Sonarr/phantom-develop/Logo/256.png") // Use the Radarr logo. - .AddQueryParam("smallicon", "https://cdn.rawgit.com/Sonarr/Sonarr/phantom-develop/Logo/96-Outline-White.png") // 96x96px with outline at 88x88px on a transparent background. + .AddQueryParam("icon", "https://cdn.rawgit.com/Sonarr/Sonarr/main/Logo/256.png") // Use the Sonarr logo. + .AddQueryParam("smallicon", "https://cdn.rawgit.com/Sonarr/Sonarr/main/Logo/96-Outline-White.png") // 96x96px with outline at 88x88px on a transparent background. .AddQueryParam("priority", settings.Priority) .Build();