fix crash on theme preview

master
Jean-Christian Paul Denis 2023-09-04 11:43:43 +02:00
parent 374c8f03d4
commit 75adf40c3d
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
1 changed files with 4 additions and 0 deletions

View File

@ -72,6 +72,10 @@ class Frontend extends Process
public static function switchTheme(string $theme): void
{
if (dcCore::app()->blog->settings->get('system')->get('theme') == $theme) {
return;
}
if (My::settings()->get('mt_exclude')) {
if (in_array($theme, explode('/', My::settings()->get('mt_exclude')))) {
return;