Remove leading / from baseurl

This commit is contained in:
Bond_009 2019-11-17 19:53:12 +01:00
parent c87f459ec2
commit 5ee070eb29
2 changed files with 2 additions and 2 deletions

View file

@ -220,7 +220,7 @@ namespace Emby.Dlna.Api
{ {
index++; index++;
} }
else if (string.Equals(first, baseUrl)) else if (string.Equals(first, baseUrl.Remove(0, 1)))
{ {
index++; index++;
var second = pathInfo[1]; var second = pathInfo[1];

View file

@ -306,7 +306,7 @@ namespace MediaBrowser.Api
{ {
index++; index++;
} }
else if (string.Equals(first, baseUrl)) else if (string.Equals(first, baseUrl.Remove(0, 1)))
{ {
index++; index++;
var second = pathInfo[1]; var second = pathInfo[1];