Sort button causing nil error.
cgsub opened this issue ยท 1 comments
In retail version.
Shopping list sort button was causing a nil error.
I could make it work by edit line 76 in Source\Shopping\Mixins\List.lua
--table.sort(self.selectedList.items, function(a, b)
table.sort(self.data.items, function(a, b)