Browse Source

Merge pull request #2400 from Bond-009/baseurl

Another baseurl related fix
dkanada 5 years ago
parent
commit
cf2626428c

+ 1 - 1
Emby.Server.Implementations/ApplicationHost.cs

@@ -1522,7 +1522,7 @@ namespace Emby.Server.Implementations
             string baseUrl = ServerConfigurationManager.Configuration.BaseUrl;
             string baseUrl = ServerConfigurationManager.Configuration.BaseUrl;
             if (baseUrl.Length != 0)
             if (baseUrl.Length != 0)
             {
             {
-                url.Append('/').Append(baseUrl);
+                url.Append(baseUrl);
             }
             }
 
 
             return url.ToString();
             return url.ToString();

+ 1 - 0
MediaBrowser.Model/Configuration/ServerConfiguration.cs

@@ -165,6 +165,7 @@ namespace MediaBrowser.Model.Configuration
         public bool SkipDeserializationForBasicTypes { get; set; }
         public bool SkipDeserializationForBasicTypes { get; set; }
 
 
         public string ServerName { get; set; }
         public string ServerName { get; set; }
+
         public string BaseUrl
         public string BaseUrl
         {
         {
             get => _baseUrl;
             get => _baseUrl;