Преглед на файлове

Add MethodNotAllowedException with code 405

Joshua Boniface преди 6 години
родител
ревизия
250e0c75df
променени са 1 файла, в които са добавени 1 реда и са изтрити 0 реда
  1. 1 0
      Emby.Server.Implementations/HttpServer/HttpListenerHost.cs

+ 1 - 0
Emby.Server.Implementations/HttpServer/HttpListenerHost.cs

@@ -203,6 +203,7 @@ namespace Emby.Server.Implementations.HttpServer
                 case DirectoryNotFoundException _:
                 case FileNotFoundException _:
                 case ResourceNotFoundException _: return 404;
+                case MethodNotAllowedException _: return 405;
                 case RemoteServiceUnavailableException _: return 502;
                 default: return 500;
             }