update: fix client protocol

This commit is contained in:
tokumeikoi
2022-05-12 03:38:28 +08:00
parent bd0834bd3f
commit fae48e2c81
4 changed files with 21 additions and 14 deletions

View File

@ -50,6 +50,9 @@ class Handler extends ExceptionHandler
*/
public function render($request, Throwable $exception)
{
if ($exception instanceof \Facade\Ignition\Exceptions\ViewException) {
abort(501, '主题初始化发生错误,请在后台对主题检查或配置后重试。');
}
return parent::render($request, $exception);
}
}