#11458 fixed visual console when setting background none

This commit is contained in:
Daniel Cebrian 2023-06-05 15:15:25 +02:00
parent 564cc9652e
commit 635518eae9
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ final class Container extends Model
null null
); );
return ($backgroundImage === 'None.png') ? null : str_replace(' ', '%20', $backgroundImage); return ($backgroundImage === 'None.png' || $backgroundImage === null) ? null : str_replace(' ', '%20', $backgroundImage);
} }