Fix VC background with spaces on his name

This commit is contained in:
Calvo 2022-11-15 13:54:57 +01:00
parent 2e7d5aa336
commit 51e832503a
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 : $backgroundImage;
return ($backgroundImage === 'None.png') ? null : str_replace(' ', '_', $backgroundImage);
}