From 037cf7421c3091bce05342568433660acf92f515 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihan=20=C5=9Eent=C3=BCrk?= <53110792+CihanSenturk@users.noreply.github.com> Date: Mon, 30 Jun 2025 16:17:14 +0300 Subject: [PATCH] fixed extra module update issue --- app/Utilities/Info.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/Utilities/Info.php b/app/Utilities/Info.php index 3367d0baa..fdfad35e2 100644 --- a/app/Utilities/Info.php +++ b/app/Utilities/Info.php @@ -22,7 +22,11 @@ class Info ]; if (! empty($info) || is_cloud()) { - return array_merge($info, $basic); + if (is_cloud()) { + $basic['companies'] = 0; + } + + return array_merge(static::versions(), $info, $basic); } $users_count = user_model_class()::query()->isNotCustomer()->count();