Update MediaService.php

This commit is contained in:
Anyon 2019-07-18 16:43:06 +08:00
parent a6df40e320
commit c7a981a352

View File

@ -78,7 +78,10 @@ class MediaService
*/
private static function getServerPath($local)
{
if (file_exists($local)) return new MyCurlFile($local);
return new MyCurlFile(File::down($local)['file']);
if (file_exists($local)) {
return new MyCurlFile($local);
} else {
return new MyCurlFile(File::down($local)['file']);
}
}
}