Remove duplicate code

Co-authored-by: Vasily <JustAMan@users.noreply.github.com>
pull/3185/head
David 4 years ago committed by GitHub
parent e9ebe07ecc
commit 37a4cc599b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -230,13 +230,9 @@ namespace Emby.Server.Implementations.HttpServer
httpRes.StatusCode = statusCode;
if (!_hostEnvironment.IsDevelopment())
{
await httpRes.WriteAsync("Error processing request.").ConfigureAwait(false);
return;
}
var errContent = NormalizeExceptionMessage(ex) ?? string.Empty;
var errContent = _hostEnvironment.IsDevelopment()
? (NormalizeExceptionMessage(ex) ?? string.Empty)
: "Error processing request.";
httpRes.ContentType = "text/plain";
httpRes.ContentLength = errContent.Length;
await httpRes.WriteAsync(errContent).ConfigureAwait(false);

Loading…
Cancel
Save