Fixed: URL Base setting for Kodi connections

pull/9820/head
Bogdan 3 months ago
parent 0a5a4e0a6f
commit 2286055d6a

@ -14,6 +14,7 @@ namespace NzbDrone.Core.Notifications.Xbmc
{
RuleFor(c => c.Host).ValidHost();
RuleFor(c => c.DisplayTime).GreaterThanOrEqualTo(2);
RuleFor(c => c.UrlBase).ValidUrlBase();
}
}
@ -65,7 +66,7 @@ namespace NzbDrone.Core.Notifications.Xbmc
public bool AlwaysUpdate { get; set; }
[JsonIgnore]
public string Address => $"{Host.ToUrlHost()}:{Port}";
public string Address => $"{Host.ToUrlHost()}:{Port}{UrlBase}";
public NzbDroneValidationResult Validate()
{

Loading…
Cancel
Save