mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
file chunk fix
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'version' => '1.0.0',
|
||||
'version' => '1.0.1',
|
||||
|
||||
'is_demo' => env('APP_DEMO', false),
|
||||
|
||||
|
||||
@@ -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