bug fix refresh bug fix

This commit is contained in:
Xertis 2025-01-28 20:39:00 +03:00 committed by GitHub
parent 2c29e77f82
commit e205182da6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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