Update MediaStorageService

This commit is contained in:
Daniel Supernault 2022-10-07 06:16:54 -06:00
parent 253a7c8c71
commit 1de7a136f6
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -236,7 +236,10 @@ class MediaStorageService {
$tmpBase = storage_path('app/remcache/');
$tmpPath = 'avatar_' . $avatar->profile_id . '-' . $path;
$tmpName = $tmpBase . $tmpPath;
$data = file_get_contents($url, false, null, 0, $head['length']);
$data = @file_get_contents($url, false, null, 0, $head['length']);
if(!$data) {
return;
}
file_put_contents($tmpName, $data);
$disk = Storage::disk($driver);