mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
Another baseurl related fix
Baseurl always starts with a '/' (unless it's empty)
This commit is contained in:
parent
662e1164c9
commit
f5db4c8402
@ -1522,7 +1522,7 @@ namespace Emby.Server.Implementations
|
||||
string baseUrl = ServerConfigurationManager.Configuration.BaseUrl;
|
||||
if (baseUrl.Length != 0)
|
||||
{
|
||||
url.Append('/').Append(baseUrl);
|
||||
url.Append(baseUrl);
|
||||
}
|
||||
|
||||
return url.ToString();
|
||||
|
@ -165,6 +165,7 @@ namespace MediaBrowser.Model.Configuration
|
||||
public bool SkipDeserializationForBasicTypes { get; set; }
|
||||
|
||||
public string ServerName { get; set; }
|
||||
|
||||
public string BaseUrl
|
||||
{
|
||||
get => _baseUrl;
|
||||
|
Loading…
Reference in New Issue
Block a user