#11456 fixed visual console when setting background none

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

View File

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