Skip to content

Commit 6c5853a

Browse files
committed
fix version compare
1 parent 8bf5c6c commit 6c5853a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Jobs/CheckSiteHealth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function handle(): void
5353
}
5454

5555
// Available version is not newer, exit
56-
if (!version_compare($latestVersion, $this->site->cms_version, ">")) {
56+
if (version_compare($latestVersion, $this->site->cms_version, ">")) {
5757
return;
5858
}
5959

0 commit comments

Comments
 (0)