Skip to content

Commit

Permalink
bug fix refresh bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Xertis authored Jan 28, 2025
1 parent 2c29e77 commit e205182
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion res/layouts/pages/content.xml.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ function reposition_func(_pack)
tbl = packs_excluded
else
tbl = packs_excluded
table.insert(packs_excluded, pack.get_info(_pack))
local packinfo = pack.get_info(_pack)
packinfo[packinfo.id] = {packinfo.id, packinfo.title}
table.insert(packs_excluded, packinfo.id)
end

local indx = table.index(tbl, _pack) - 1
Expand Down

0 comments on commit e205182

Please sign in to comment.