mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Merge pull request #2400 from Bond-009/baseurl
Another baseurl related fix
This commit is contained in:
commit
cf2626428c
2 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue