fix: Don't write existing icons to disk
This commit is contained in:
parent
66dbbc835e
commit
7cf9d46eb3
1 changed files with 3 additions and 1 deletions
|
@ -214,7 +214,9 @@ class ItemController extends Controller
|
|||
if (strpos($path, 'icons/icons/') !== false) {
|
||||
$path = str_replace('icons/icons/','icons/',$path);
|
||||
}
|
||||
Storage::disk('public')->put($path, $contents);
|
||||
if(! Storage::disk('public')->exists($path)) {
|
||||
Storage::disk('public')->put($path, $contents);
|
||||
}
|
||||
$request->merge([
|
||||
'icon' => $path,
|
||||
]);
|
||||
|
|
Loading…
Reference in a new issue