瀏覽代碼

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;
             }