mirror of
https://github.com/friendica/friendica
synced 2024-11-18 08:23:53 +00:00
Swap conditions
This commit is contained in:
parent
b93f100c97
commit
e62be24e6b
1 changed files with 3 additions and 3 deletions
|
@ -798,11 +798,11 @@ class Image
|
|||
}
|
||||
}
|
||||
|
||||
if (!$this->isImagick()) {
|
||||
if ($this->isImagick()) {
|
||||
$this->image->drawImage($draw);
|
||||
} else {
|
||||
$this->width = imagesx($this->image);
|
||||
$this->height = imagesy($this->image);
|
||||
} else {
|
||||
$this->image->drawImage($draw);
|
||||
}
|
||||
|
||||
$this->valid = true;
|
||||
|
|
Loading…
Reference in a new issue