mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
If using https make remote url reflect that.
This commit is contained in:
parent
bb02d68ceb
commit
02eb692c37
@ -79,7 +79,7 @@ namespace MediaBrowser.Server.Implementations.Connect
|
||||
if (!ip.StartsWith("http://", StringComparison.OrdinalIgnoreCase) &&
|
||||
!ip.StartsWith("https://", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
ip = "http://" + ip;
|
||||
ip = (_config.Configuration.UseHttps ? "https://" : "http://") + ip;
|
||||
}
|
||||
|
||||
return ip + ":" + _config.Configuration.PublicPort.ToString(CultureInfo.InvariantCulture);
|
||||
|
Loading…
x
Reference in New Issue
Block a user