mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Remove duplicate code
Co-authored-by: Vasily <JustAMan@users.noreply.github.com>
This commit is contained in:
parent
e9ebe07ecc
commit
37a4cc599b
@ -230,13 +230,9 @@ namespace Emby.Server.Implementations.HttpServer
|
|||||||
|
|
||||||
httpRes.StatusCode = statusCode;
|
httpRes.StatusCode = statusCode;
|
||||||
|
|
||||||
if (!_hostEnvironment.IsDevelopment())
|
var errContent = _hostEnvironment.IsDevelopment()
|
||||||
{
|
? (NormalizeExceptionMessage(ex) ?? string.Empty)
|
||||||
await httpRes.WriteAsync("Error processing request.").ConfigureAwait(false);
|
: "Error processing request.";
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var errContent = NormalizeExceptionMessage(ex) ?? string.Empty;
|
|
||||||
httpRes.ContentType = "text/plain";
|
httpRes.ContentType = "text/plain";
|
||||||
httpRes.ContentLength = errContent.Length;
|
httpRes.ContentLength = errContent.Length;
|
||||||
await httpRes.WriteAsync(errContent).ConfigureAwait(false);
|
await httpRes.WriteAsync(errContent).ConfigureAwait(false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user