mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2025-01-03 14:32:40 +00:00
Fix early exceptions
This commit is contained in:
parent
9428d7468a
commit
1a8acdf03f
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ abstract class AbstractException extends \Exception {
|
|||
$code = self::CODES[$codeID];
|
||||
$msg = "Exception.".str_replace("\\", "/", $class).".$msgID";
|
||||
}
|
||||
$msg = Arsse::$lang->msg($msg, $vars);
|
||||
$msg = (Arsse::$lang ?? new Lang)->msg($msg, $vars);
|
||||
}
|
||||
parent::__construct($msg, $code, $e);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue