From 41d7bf87c0028205d4e7449a944b77adea4ac7b7 Mon Sep 17 00:00:00 2001 From: Qstick Date: Fri, 1 May 2020 21:01:17 -0400 Subject: [PATCH] Fixed: Resource missing from Gotify call --- 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 6baf71932..ab1130ab6 100644 --- a/src/NzbDrone.Core/Notifications/Gotify/GotifyProxy.cs +++ b/src/NzbDrone.Core/Notifications/Gotify/GotifyProxy.cs @@ -21,7 +21,7 @@ namespace NzbDrone.Core.Notifications.Gotify { try { - var request = new HttpRequestBuilder(settings.Server).Post() + var request = new HttpRequestBuilder(settings.Server).Resource("message").Post() .AddQueryParam("token", settings.AppToken) .AddFormParameter("title", title) .AddFormParameter("message", message)