Browse Source

Revert media model change

Daniel Supernault 2 years ago
parent
commit
c6fe213f93
1 changed files with 2 additions and 1 deletions
  1. 2 1
      app/Media.php

+ 2 - 1
app/Media.php

@@ -38,7 +38,8 @@ class Media extends Model
     public function url()
     {
         if($this->cdn_url) {
-            return Storage::disk(config('filesystems.cloud'))->url($this->media_path);
+            // return Storage::disk(config('filesystems.cloud'))->url($this->media_path);
+            return $this->cdn_url;
         }
 
         if($this->remote_media && $this->remote_url) {