Skip to content

Commit

Permalink
Fixed issue: ComfortUpdate showing updates as unstable, even though t…
Browse files Browse the repository at this point in the history
…hey are not (fixed the related alert)
  • Loading branch information
twilligls committed Jun 14, 2023
1 parent f6731b7 commit 804319a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/UpdateForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ public function getUpdateNotification()
$security_update_available = true;
}

if ($update->branch != 'master') {
if (!in_array($update->branch, ['master','5.x','3.x-LTS'])) {
$unstable_update_available = true;
}
}
Expand Down

0 comments on commit 804319a

Please sign in to comment.