Skip to content

Commit ea83e7f

Browse files
authored
Merge pull request #176 from Jayy001/Eeems-patch-1
Fix #167
2 parents 693f0b6 + e0583cd commit ea83e7f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codexctl/updates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def uses_new_update_engine(version: str) -> bool:
396396
Returns:
397397
bool: If it uses the new update engine or not
398398
"""
399-
return int(version.split(".")[0]) >= 3 and int(version.split(".")[1]) >= 11
399+
return tuple([int(x) for x in version.split(".")]) > (3, 11, 2, 5)
400400

401401
@staticmethod
402402
def is_bootloader_boundary_downgrade(current_version: str, target_version: str) -> bool:

0 commit comments

Comments
 (0)