Fix sort mode overflow

This commit is contained in:
Gabriel Tofvesson 2024-10-12 23:21:29 +02:00
parent 8ed9e48dfe
commit 6777df634d

View File

@ -274,7 +274,7 @@ local PAGES = {
return function(a, b)
local aRes = func(a)
local bRes = func(b)
return (aRes == bRes and tiebreaker ~= nil and tiebreaker(a, b)) or ((aRes > bRes) ~= invert)
return (aRes == bRes and tiebreaker ~= nil and tiebreaker(a, b)) or ((aRes < bRes) ~= invert)
end
end
@ -701,7 +701,7 @@ local PAGES = {
sortButton:setOnClick(function()
print("Reorganizing...")
pageState.sortMode = (pageState.sortMode + 1 + #SORT_MODE) % #SORT_MODE
pageState.sortMode = (pageState.sortMode % #SORT_MODE) + 1
reloadState()
return true
end)