From 9947050bdf7c0722db9ece1bf0639d414b8e5fbc Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Thu, 5 Mar 2020 14:44:50 -0700 Subject: [PATCH] Update Media model, fix remote media preview --- app/Media.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/Media.php b/app/Media.php index 8c3de944b..2bc1d0334 100644 --- a/app/Media.php +++ b/app/Media.php @@ -42,8 +42,12 @@ class Media extends Model public function thumbnailUrl() { - $path = $this->thumbnail_path ?? 'public/no-preview.png'; - return url(Storage::url($path)); + if($this->remote_media == true) { + return $this->remote_url; + } else { + $path = $this->thumbnail_path ?? 'public/no-preview.png'; + return url(Storage::url($path)); + } } public function thumb()