Don't send Exception message in Production Environment

pull/3185/head
David 4 years ago
parent 777c9c7bc9
commit e9ebe07ecc

@ -230,6 +230,12 @@ 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;
httpRes.ContentType = "text/plain";
httpRes.ContentLength = errContent.Length;

Loading…
Cancel
Save