Premade Groups Filter

Premade Groups Filter

9M Downloads

Solution of the double entry issue

rodneycheung opened this issue · 1 comments

commented

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

commented

Oh sorry. I didn't see that you have mentioned the solution in another issue ticket