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)