From e91f65f83310844bda0c55af22848558c2e9b89b Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 6 Nov 2018 11:53:25 +0000 Subject: [PATCH] Ignore copy errors --- app/SupportedApps.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/SupportedApps.php b/app/SupportedApps.php index 2d79aed6..80628fe3 100644 --- a/app/SupportedApps.php +++ b/app/SupportedApps.php @@ -143,7 +143,7 @@ abstract class SupportedApps $img_src = app_path('SupportedApps/'.className($details->name).'/'.$details->icon); $img_dest = storage_path('app/public/icons/'.$details->icon); //die("i: ".$img_src); - copy($img_src, $img_dest); + @copy($img_src, $img_dest); $app->appid = $details->appid; $app->name = $details->name;