mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
keep old base url for now
This commit is contained in:
parent
d521e5c36a
commit
97d6c2db6b
@ -602,6 +602,13 @@ namespace Emby.Server.Implementations.HttpServer
|
||||
Priority = route.Priority,
|
||||
Summary = route.Summary
|
||||
});
|
||||
|
||||
routes.Add(new RouteAttribute(NormalizeOldRoutePath(route.Path), route.Verbs)
|
||||
{
|
||||
Notes = route.Notes,
|
||||
Priority = route.Priority,
|
||||
Summary = route.Summary
|
||||
});
|
||||
}
|
||||
|
||||
return routes.ToArray();
|
||||
@ -637,6 +644,17 @@ namespace Emby.Server.Implementations.HttpServer
|
||||
return _socketListener.ProcessWebSocketRequest(context);
|
||||
}
|
||||
|
||||
// this method was left for compatibility with third party clients
|
||||
private static string NormalizeOldRoutePath(string path)
|
||||
{
|
||||
if (path.StartsWith("/", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "/emby" + path;
|
||||
}
|
||||
|
||||
return "emby/" + path;
|
||||
}
|
||||
|
||||
private static string NormalizeCustomRoutePath(string baseUrl, string path)
|
||||
{
|
||||
if (path.StartsWith("/", StringComparison.OrdinalIgnoreCase))
|
||||
|
Loading…
x
Reference in New Issue
Block a user