From 71b5ebcd329adb83be30815178446aeb3a907cf7 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, 21 Jul 2025 15:26:25 +0300 Subject: [PATCH] update version check exception message --- app/Utilities/Versions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Utilities/Versions.php b/app/Utilities/Versions.php index 831d820e2..a400f80af 100644 --- a/app/Utilities/Versions.php +++ b/app/Utilities/Versions.php @@ -88,7 +88,7 @@ class Versions $url = 'core/version/' . $info['akaunting'] . '/' . $info['php'] . '/' . $info['mysql'] . '/' . $info['companies']; } catch (\Exception $e) { // Handle exception - report($info, 'Error fetching core version'); + report('Error fetching core version: ( $info = ' . json_encode($info) . ')' . $e->getMessage()); return $versions; }