Gotify token as query parameter
This commit is contained in:
parent
470c9101ae
commit
886e5581d8
|
@ -10,8 +10,13 @@ namespace NzbDrone.Core.Notifications.Gotify
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public GotifyException(string message, Exception innerException, params object[] args)
|
public GotifyException(string message, params object[] args)
|
||||||
: base(message, innerException, args)
|
: base(message, args)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public GotifyException(string message, Exception innerException)
|
||||||
|
: base(message, innerException)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,13 +22,13 @@ namespace NzbDrone.Core.Notifications.Gotify
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var request = new HttpRequestBuilder(settings.Server).Post()
|
var request = new HttpRequestBuilder(settings.Server).Post()
|
||||||
.AddFormParameter("token", settings.AppToken)
|
.AddQueryParam("token", settings.AppToken)
|
||||||
.AddFormParameter("title", title)
|
.AddFormParameter("title", title)
|
||||||
.AddFormParameter("message", message)
|
.AddFormParameter("message", message)
|
||||||
.AddFormParameter("priority", settings.Priority)
|
.AddFormParameter("priority", settings.Priority)
|
||||||
.Build();
|
.Build();
|
||||||
|
|
||||||
_httpClient.Post(request);
|
_httpClient.Execute(request);
|
||||||
}
|
}
|
||||||
catch (HttpException ex)
|
catch (HttpException ex)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue