From 02705d0d1af13aedb1e5cb78a28c154be5fbf2c0 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 14 Sep 2021 12:49:17 -0700 Subject: [PATCH] Fixed S3 upload path Signed-off-by: snipe --- app/Console/Commands/ResetDemoSettings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/ResetDemoSettings.php b/app/Console/Commands/ResetDemoSettings.php index 6808b125c8..6326701fa9 100644 --- a/app/Console/Commands/ResetDemoSettings.php +++ b/app/Console/Commands/ResetDemoSettings.php @@ -81,8 +81,8 @@ class ResetDemoSettings extends Command $user->save(); } - \Storage::disk('local_public')->put('snipe-logo.png', file_get_contents(public_path('img/demo/snipe-logo.png'))); - \Storage::disk('local_public')->put('snipe-logo-lg.png', file_get_contents(public_path('img/demo/snipe-logo-lg.png'))); + \Storage::disk('public')->put('snipe-logo.png', file_get_contents(public_path('img/demo/snipe-logo.png'))); + \Storage::disk('public')->put('snipe-logo-lg.png', file_get_contents(public_path('img/demo/snipe-logo-lg.png'))); }