Accept absolute url for external services

This commit is contained in:
nicolas.dorier
2019-01-23 13:17:36 +09:00
parent 854a55ac1a
commit bb51436ae3
2 changed files with 2 additions and 2 deletions

View File

@@ -465,7 +465,7 @@ namespace BTCPayServer.Controllers
result.ExternalServices.Add(new ServicesViewModel.ExternalService()
{
Name = externalService.Key,
Link = this.Request.GetRelativePath(externalService.Value)
Link = this.Request.GetRelativePathOrAbsolute(externalService.Value)
});
}
if(_Options.SSHSettings != null)