Skip to content

Commit

Permalink
Mark 21.2.0 as safe
Browse files Browse the repository at this point in the history
  • Loading branch information
Alerymin authored Oct 2, 2023
1 parent 764ff6f commit 074c0b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootloader/boot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void Boot::bootSlot(Bootloader::Slot s) {
if (!s.userlandHeader()->isOmega() && !s.userlandHeader()->isUpsilon()) {
// We are trying to boot epsilon, so we check the version and show an advertisement if needed
const char * version = s.userlandHeader()->version();
const char * min = "21.1.2";
const char * min = "21.2.1";
int versionSum = Utility::versionSum(version, strlen(version));
int minimalVersionTrigger = Utility::versionSum(min, strlen(min));
if (versionSum >= minimalVersionTrigger) {
Expand Down

0 comments on commit 074c0b2

Please sign in to comment.