From b9f2095146e7c6b231d59b29bc5e54e2d5d37693 Mon Sep 17 00:00:00 2001 From: ahuchjm Date: Tue, 28 Sep 2021 22:46:53 +0800 Subject: [PATCH] bug fix --- src/Common/Utils.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Common/Utils.php b/src/Common/Utils.php index 4057cf4..722ad3d 100644 --- a/src/Common/Utils.php +++ b/src/Common/Utils.php @@ -218,7 +218,10 @@ class Utils 'config' => $configPath ]; } - isset($config['app_id']) && $plugins[$config['app_id']] = $config; + + if(isset($config['app_id']) && $config['app_id'] != '6130acd182770'){ + $plugins[$config['app_id']] = $config; + } } DzqCache::set(CacheKey::PLUGIN_LOCAL_CONFIG, $plugins, 5 * 60); return $plugins; -- Gitee