From af047818309dd5e831d27c322d9b2b3f8c36777c Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 29 Oct 2018 15:24:47 +0000 Subject: [PATCH] remove class name from icon name --- app/SupportedApps.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/SupportedApps.php b/app/SupportedApps.php index c278fbab..32c08475 100644 --- a/app/SupportedApps.php +++ b/app/SupportedApps.php @@ -103,7 +103,7 @@ abstract class SupportedApps public static function saveApp($details, $app) { $img_src = app_path('SupportedApps/'.className($details->name).'/'.$details->icon); - $img_dest = public_path('storage/supportedapps/'.className($details->icon)); + $img_dest = public_path('storage/supportedapps/'.$details->icon); //die("i: ".$img_src); copy($img_src, $img_dest);