Fix OSUpdate

This commit is contained in:
Thomas Farstrike
2026-02-11 23:20:23 +01:00
parent 290696f3e9
commit a4e167d0e6
2 changed files with 16 additions and 16 deletions
@@ -223,11 +223,11 @@ class OSUpdate(Activity):
# Determine button text based on version comparison
if is_newer > 0:
# Update version > installed OS version
button_text = "Install\nnew\version"
button_text = "Install\nnew\nversion"
label = "newer"
elif is_older > 0:
# Update version < installed OS version
button_text = "Install\nolder\nversion"
button_text = "Install\nold\nversion"
label = "older"
else:
# Update version == installed OS version (neither is newer than the other)