Include OS and client information in easy error info copy/paste and on the about dialog

This commit is contained in:
Bernd Bestel
2021-09-20 20:16:41 +02:00
parent b9fff4954a
commit c06bb7784a
5 changed files with 14 additions and 4 deletions

View File

@@ -77,7 +77,8 @@ class ExceptionController extends BaseApiController
}
return $this->renderPage($response->withStatus(500), 'errors/500', [
'exception' => $exception
'exception' => $exception,
'system_info' => $this->getApplicationService()->GetSystemInfo()
]);
}
}