@@ -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;
+ }
}