mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
file chunk fix
This commit is contained in:
@@ -18,7 +18,7 @@ class StoreFileChunksAction
|
||||
$file = $request->file('file');
|
||||
|
||||
// Get chunk name
|
||||
$name = Str::uuid() . '.' . $request->input('extension');
|
||||
$name = $file->getClientOriginalName();
|
||||
|
||||
// Get chunk file path
|
||||
$path = Storage::disk('local')->path("chunks/$name");
|
||||
|
||||
Reference in New Issue
Block a user