fix: spamming :D

This commit is contained in:
Andras Bacsai 2024-05-30 19:35:44 +02:00
parent f8d607b06f
commit c839cf50af

View File

@ -27,16 +27,16 @@ class UpdateCoolify
$this->latestVersion = get_latest_version_of_coolify(); $this->latestVersion = get_latest_version_of_coolify();
$this->currentVersion = config('version'); $this->currentVersion = config('version');
if (!$settings->is_auto_update_enabled) { if (!$settings->is_auto_update_enabled) {
Log::info('Auto update is disabled'); Log::debug('Auto update is disabled');
throw new \Exception('Auto update is disabled'); return;
} }
if ($this->latestVersion === $this->currentVersion) { if ($this->latestVersion === $this->currentVersion) {
Log::info('Already on latest version'); Log::debug('Already on latest version');
throw new \Exception('Already on latest version'); return;
} }
if (version_compare($this->latestVersion, $this->currentVersion, '<')) { if (version_compare($this->latestVersion, $this->currentVersion, '<')) {
Log::info('Latest version is lower than current version?!'); Log::debug('Latest version is lower than current version?!');
throw new \Exception('Latest version is lower than current version?!'); return;
} }
Log::info("Updating from {$this->currentVersion} -> {$this->latestVersion}"); Log::info("Updating from {$this->currentVersion} -> {$this->latestVersion}");
$this->update(); $this->update();