aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2020-02-14 01:16:52 +0900
committerGitHub <noreply@github.com>2020-02-14 01:16:52 +0900
commitcf2626428c0d4755662855fe6c3e4f439c909de9 (patch)
tree2e22327724253510ae7a5cb3bc52e54ccf092536 /Emby.Server.Implementations/ApplicationHost.cs
parent407ba755f1ef257f476024157959e88e58f1d1f9 (diff)
parentf5db4c8402ffbbcd7a9837b9cecc01a74e778043 (diff)
Merge pull request #2400 from Bond-009/baseurl
Another baseurl related fix
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index e2df8877a..0837db251 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -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();