mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 10:35:00 -05:00
Add MethodNotAllowedException with code 405
This commit is contained in:
parent
65bff1181a
commit
250e0c75df
@ -203,6 +203,7 @@ namespace Emby.Server.Implementations.HttpServer
|
|||||||
case DirectoryNotFoundException _:
|
case DirectoryNotFoundException _:
|
||||||
case FileNotFoundException _:
|
case FileNotFoundException _:
|
||||||
case ResourceNotFoundException _: return 404;
|
case ResourceNotFoundException _: return 404;
|
||||||
|
case MethodNotAllowedException _: return 405;
|
||||||
case RemoteServiceUnavailableException _: return 502;
|
case RemoteServiceUnavailableException _: return 502;
|
||||||
default: return 500;
|
default: return 500;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user