fix: Don't write existing icons to disk

This commit is contained in:
Attila Kerekes 2022-11-14 00:08:09 +01:00 committed by Attila Jozsef Kerekes
parent 66dbbc835e
commit 7cf9d46eb3
No known key found for this signature in database
GPG key ID: E1121565A016ADFD

View file

@ -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,
]);