aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Boniface <joshua@boniface.me>2019-10-09 09:22:55 -0400
committerJoshua Boniface <joshua@boniface.me>2019-10-09 09:22:55 -0400
commitb96079fee6c8cf8919eb1f531bdfaac3db3fb2b8 (patch)
tree825700b0b0d552572638312590326531e5c5523c
parent2a79ae0a6e4deb4f5d1eb83a377d26ff542c88ca (diff)
Make NormalizeUrlPath static
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpListenerHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
index 36753a9a1..ecd35a1a8 100644
--- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
+++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
@@ -89,7 +89,7 @@ namespace Emby.Server.Implementations.HttpServer
return _appHost.CreateInstance(type);
}
- private string NormalizeUrlPath(string path)
+ private static string NormalizeUrlPath(string path)
{
if (path.StartsWith("/"))
{