Add fix for InstagramImport

This commit is contained in:
Christoph Stelz 2021-02-09 08:58:24 +01:00
parent 4150a72b18
commit f5aa89b2d2
1 changed files with 5 additions and 1 deletions

View File

@ -101,7 +101,11 @@ class ImportInstagram implements ShouldQueue
$path = storage_path("app/$importData->path");
$storagePath = "public/m/{$monthHash}/{$userHash}";
$newPath = "app/$storagePath/$filename";
$dir = "app/$storagePath";
if(!is_dir(storage_path($dir))) {
mkdir(storage_path($dir), 0777, true);
}
$newPath = "$dir/$filename";
$fs->move($path,storage_path($newPath));
$path = $newPath;
$hash = \hash_file('sha256', storage_path($path));