mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-01 16:02:29 +00:00
Merge pull request #2019 from Bond-009/baseurlhotfix
Remove leading / from baseurl
This commit is contained in:
@@ -220,7 +220,7 @@ namespace Emby.Dlna.Api
|
||||
{
|
||||
index++;
|
||||
}
|
||||
else if (string.Equals(first, baseUrl))
|
||||
else if (string.Equals(first, baseUrl.Remove(0, 1)))
|
||||
{
|
||||
index++;
|
||||
var second = pathInfo[1];
|
||||
|
||||
@@ -306,7 +306,7 @@ namespace MediaBrowser.Api
|
||||
{
|
||||
index++;
|
||||
}
|
||||
else if (string.Equals(first, baseUrl))
|
||||
else if (string.Equals(first, baseUrl.Remove(0, 1)))
|
||||
{
|
||||
index++;
|
||||
var second = pathInfo[1];
|
||||
|
||||
Reference in New Issue
Block a user