Remove extra whitespace

Co-authored-by: dkanada <dkanada@users.noreply.github.com>
This commit is contained in:
Mark Monteiro 2020-05-18 10:47:01 -04:00 committed by GitHub
parent 634bc73c9a
commit 5eec3a1342
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ namespace Emby.Server.Implementations.HttpServer
// Instead, re-throw the exception so it can be handled by the DeveloperExceptionPageMiddleware.
// However, do not use the DeveloperExceptionPageMiddleware when the stack trace should be ignored,
// because it will log the stack trace when it handles the exception.
if (statusCode == 500 && !ignoreStackTrace && _hostEnvironment.IsDevelopment() )
if (statusCode == 500 && !ignoreStackTrace && _hostEnvironment.IsDevelopment())
{
throw;
}