Solution of the double entry issue
rodneycheung opened this issue · 1 comments
So when we apply for a key, we see two entries in the list. one is at the top, another is somewhere beneath
There is a solution appeared on a Chinese WoW fansite source
do
hooksecurefunc("LFGListSearchPanel_UpdateResultList", function(self)
if next(self.results) and next(self.applications) then
for _, value in ipairs(self.applications) do
tDeleteItem(self.results, value)
end
self.totalResults = #self.results
LFGListSearchPanel_UpdateResults(self)
end
end)
end
The author's github page for the reference