rabin 3 years ago
parent
commit
8a495b6c27
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/View.php

+ 3 - 1
src/View.php

@@ -440,7 +440,9 @@ class View
                 $file = $handle->$method($id, $source, $dest, $path);
             } elseif (!$local && $handle->yun) {
                 $yun = $handle->yun->getData();
-                $file = $yun['host'] . $source;
+                if (!strstr($source, 'http')) {
+                    $file = $yun['host'] . $source;
+                }
             }
         }