Update media model, use original photo url for non-existent thumbnails

This commit is contained in:
Daniel Supernault 2022-03-30 23:50:32 -06:00
parent 41ffc71b28
commit 4701b0e8f0
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 3 additions and 1 deletions

View File

@ -56,7 +56,9 @@ class Media extends Model
}
if($this->media_path && $this->mime && in_array($this->mime, ['image/jpeg', 'image/png'])) {
return url(Storage::url($this->media_path));
return $this->remote_media || Str::startsWith($this->media_path, 'http') ?
$this->media_path :
url(Storage::url($this->media_path));
}
return url(Storage::url('public/no-preview.png'));