update version check exception message

This commit is contained in:
Cihan Şentürk 2025-07-21 15:26:25 +03:00 committed by GitHub
parent 9f66fed1ec
commit 71b5ebcd32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class Versions
$url = 'core/version/' . $info['akaunting'] . '/' . $info['php'] . '/' . $info['mysql'] . '/' . $info['companies']; $url = 'core/version/' . $info['akaunting'] . '/' . $info['php'] . '/' . $info['mysql'] . '/' . $info['companies'];
} catch (\Exception $e) { } catch (\Exception $e) {
// Handle exception // Handle exception
report($info, 'Error fetching core version'); report('Error fetching core version: ( $info = ' . json_encode($info) . ')' . $e->getMessage());
return $versions; return $versions;
} }