mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Merge pull request #2642 from stelzch/dev
Create directory in InstagramImport
This commit is contained in:
commit
f25452ea1a
1 changed files with 5 additions and 1 deletions
|
@ -101,7 +101,11 @@ class ImportInstagram implements ShouldQueue
|
||||||
|
|
||||||
$path = storage_path("app/$importData->path");
|
$path = storage_path("app/$importData->path");
|
||||||
$storagePath = "public/m/{$monthHash}/{$userHash}";
|
$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));
|
$fs->move($path,storage_path($newPath));
|
||||||
$path = $newPath;
|
$path = $newPath;
|
||||||
$hash = \hash_file('sha256', storage_path($path));
|
$hash = \hash_file('sha256', storage_path($path));
|
||||||
|
|
Loading…
Reference in a new issue