(Apprise) Change BaseUrl to ServerUrl

This commit is contained in:
Bogdan
2023-04-29 22:30:43 +03:00
parent 40dc4de47d
commit fc39a11ece
3 changed files with 61 additions and 12 deletions
@@ -35,7 +35,7 @@ namespace NzbDrone.Core.Notifications.Apprise
Type = (AppriseNotificationType)settings.NotificationType
};
var requestBuilder = new HttpRequestBuilder(settings.BaseUrl.TrimEnd('/', ' '))
var requestBuilder = new HttpRequestBuilder(settings.ServerUrl.TrimEnd('/', ' '))
.Post()
.Accept(HttpAccept.Json);