Fixed: URL Base setting for Kodi connections

This commit is contained in:
Bogdan 2024-03-03 13:44:47 +02:00
parent f6529d5ad3
commit 47e647ddb1
1 changed files with 2 additions and 1 deletions

View File

@ -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()
{