From 91ed949a4720d9a805666ccc2effa5246ad167e3 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 3 May 2020 16:29:21 -0400 Subject: [PATCH] Fixed: Gotify Log Statement --- src/NzbDrone.Core/Notifications/Gotify/GotifyProxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/Gotify/GotifyProxy.cs b/src/NzbDrone.Core/Notifications/Gotify/GotifyProxy.cs index ab1130ab6..16c5de217 100644 --- a/src/NzbDrone.Core/Notifications/Gotify/GotifyProxy.cs +++ b/src/NzbDrone.Core/Notifications/Gotify/GotifyProxy.cs @@ -37,7 +37,7 @@ public void SendNotification(string title, string message, GotifySettings settin throw new GotifyException("Unauthorized - AuthToken is invalid"); } - throw new GotifyException("Unable to connect to Gotify. Status Code: {0}", ex); + throw new GotifyException("Unable to connect to Gotify. Status Code: {0}", ex.Response.StatusCode); } } }