Only force scheme and port when HTTPS is disallowed

This commit is contained in:
cvium 2021-11-19 16:57:48 +01:00
parent 0009e5cc27
commit a263f3978b
1 changed files with 3 additions and 3 deletions

View File

@ -1128,12 +1128,12 @@ namespace Emby.Server.Implementations
} }
/// <inheritdoc/> /// <inheritdoc/>
public string GetApiUrlForLocalAccess(bool allowHttps) public string GetApiUrlForLocalAccess(bool allowHttps = true)
{ {
// With an empty source, the port will be null // With an empty source, the port will be null
string smart = NetManager.GetBindInterface(string.Empty, out _); string smart = NetManager.GetBindInterface(string.Empty, out _);
var scheme = allowHttps ? Uri.UriSchemeHttps : Uri.UriSchemeHttp; var scheme = !allowHttps ? Uri.UriSchemeHttp : null;
var port = allowHttps ? HttpsPort : HttpPort; int? port = !allowHttps ? HttpPort : null;
return GetLocalApiUrl(smart.Trim('/'), scheme, port); return GetLocalApiUrl(smart.Trim('/'), scheme, port);
} }