aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
diff options
context:
space:
mode:
authorClaus Vium <clausvium@gmail.com>2020-09-02 13:06:14 +0200
committerClaus Vium <clausvium@gmail.com>2020-09-02 13:06:14 +0200
commit12710cdf423c038c076c8bd351706e73f3a27899 (patch)
treec0f93845466ac2552f798a157629301b39bbf949 /Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
parentbde8c00306300ff48c85f8f97a9553fa75eaeaad (diff)
More fixes
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/HttpListenerHost.cs')
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpListenerHost.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
index 30cb7dd3a..acd7e67db 100644
--- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
+++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
@@ -79,20 +79,6 @@ namespace Emby.Server.Implementations.HttpServer
public string GlobalResponse { get; set; }
- private static string NormalizeUrlPath(string path)
- {
- if (path.Length > 0 && path[0] == '/')
- {
- // If the path begins with a leading slash, just return it as-is
- return path;
- }
- else
- {
- // If the path does not begin with a leading slash, append one for consistency
- return "/" + path;
- }
- }
-
private static Exception GetActualException(Exception ex)
{
if (ex is AggregateException agg)