mirror of
https://github.com/friendica/friendica
synced 2024-11-10 06:22:53 +00:00
Check image property is set in Object\Image
- Property was either an object or null, strict comparison with "false" was inaccurate - Address https://github.com/friendica/friendica/issues/12486#issuecomment-1374888800
This commit is contained in:
parent
b77f3a7525
commit
14e4c0db8e
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ class Image
|
||||||
public function isValid(): bool
|
public function isValid(): bool
|
||||||
{
|
{
|
||||||
if ($this->isImagick()) {
|
if ($this->isImagick()) {
|
||||||
return ($this->image !== false);
|
return !empty($this->image);
|
||||||
}
|
}
|
||||||
return $this->valid;
|
return $this->valid;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue