Check if image is not just an empty string. #205

This commit is contained in:
Stéphane Goetz 2020-05-04 11:51:16 +02:00 gecommit door GitHub
bovenliggende 04f95c8376
commit aee33cde34
Geen bekende sleutel gevonden voor deze handtekening in de database
GPG sleutel-ID: 4AEE18F83AFDEB23

Bestand weergeven

@ -191,7 +191,7 @@ class Config extends BaseConfig
public function hasImage(): bool
{
return $this->hasValue('image');
return $this->hasValue('image') && !empty($this->getValue('image'));
}
public function getImage()