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

Cette révision appartient à :
Stéphane Goetz 2020-05-04 11:51:16 +02:00 révisé par GitHub
Parent 04f95c8376
révision aee33cde34
Signature inconnue de Gitea
ID de la clé GPG: 4AEE18F83AFDEB23

Voir le fichier

@ -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()