Gotify token as query parameter

This commit is contained in:
Qstick 2020-04-19 13:47:45 -04:00 committed by Mark McDowall
parent 470c9101ae
commit 886e5581d8
2 changed files with 9 additions and 4 deletions

View File

@ -10,8 +10,13 @@ namespace NzbDrone.Core.Notifications.Gotify
{
}
public GotifyException(string message, Exception innerException, params object[] args)
: base(message, innerException, args)
public GotifyException(string message, params object[] args)
: base(message, args)
{
}
public GotifyException(string message, Exception innerException)
: base(message, innerException)
{
}
}

View File

@ -22,13 +22,13 @@ namespace NzbDrone.Core.Notifications.Gotify
try
{
var request = new HttpRequestBuilder(settings.Server).Post()
.AddFormParameter("token", settings.AppToken)
.AddQueryParam("token", settings.AppToken)
.AddFormParameter("title", title)
.AddFormParameter("message", message)
.AddFormParameter("priority", settings.Priority)
.Build();
_httpClient.Post(request);
_httpClient.Execute(request);
}
catch (HttpException ex)
{