diff options
| author | Joshua Boniface <joshua@boniface.me> | 2019-10-09 09:22:55 -0400 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2019-10-09 09:22:55 -0400 |
| commit | b96079fee6c8cf8919eb1f531bdfaac3db3fb2b8 (patch) | |
| tree | 825700b0b0d552572638312590326531e5c5523c | |
| parent | 2a79ae0a6e4deb4f5d1eb83a377d26ff542c88ca (diff) | |
Make NormalizeUrlPath static
| -rw-r--r-- | Emby.Server.Implementations/HttpServer/HttpListenerHost.cs | 2 |
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("/")) { |
