Fixed topic gc bug

This commit is contained in:
2024-03-11 01:40:05 +01:00
parent c31c55fafd
commit 2cbc41d29e
5 changed files with 8 additions and 4 deletions

View File

@ -55,6 +55,7 @@ class ResponseMiddleware
if ($t instanceof SecurityException) {
return Response::plaintext("Access Denied")->withStatus(Response::STATUS_UNAUTHORIZED);
}
$this->logger->warning(get_class($t).": ".$t->getMessage(), [ 'file'=>$t->getFile(), 'line'=>$t->getLine() ]);
return Response::plaintext("500: Internal Server Error (".$t->getMessage().")\n")->withStatus(500);
}
)->then(