mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Remove leading / from baseurl
This commit is contained in:
parent
c87f459ec2
commit
5ee070eb29
@ -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];
|
||||||
|
@ -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];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user