Update Media model, fix remote media preview

pull/2077/head
Daniel Supernault 2020-03-05 14:44:50 -07:00
rodzic eeca1fbc54
commit 9947050bdf
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -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()