Fix no image preview
This commit is contained in:
parent
786b1adbd6
commit
ce83385596
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ class Wish
|
||||||
$description = $this->description ?? $info->description ?? null;
|
$description = $this->description ?? $info->description ?? null;
|
||||||
$url = $this->url ?? $info->url ?? null;
|
$url = $this->url ?? $info->url ?? null;
|
||||||
|
|
||||||
$image = $info->image ?? '/src/assets/img/no-image.svg';
|
$image = $info->image ? $info->image : '/src/assets/img/no-image.svg';
|
||||||
$favicon = $info->favicon ?? null;
|
$favicon = $info->favicon ?? null;
|
||||||
$providerName = $info->providerName ?? null;
|
$providerName = $info->providerName ?? null;
|
||||||
$keywords = $info->keywords ?? null;
|
$keywords = $info->keywords ?? null;
|
||||||
|
|
Loading…
Reference in a new issue