Extremely slow searches since 5.4 #110


  • New
  • Defect
Open
Assigned to merialkilrogg
  • _ForgeUser12177996 created this issue Sep 13, 2013

    Searches are extremely slow with the latest version since 5.4, a lot of addons were broken this way and from what I understand the problem is a change of the API. Some addons got the issue fixed (AuctionMaster for example). Thanks for looking into this, this is the best addon ever made.

  • _ForgeUser12177996 added the tags New Defect Sep 13, 2013
  • Forge_User_24693260 posted a comment Sep 28, 2013

    The root cause of this is that AuctionLite:GetListing() uses the old parameter format, causing the "owner" field to be empty (because it's actually the new bidderFullName field). This makes AuctionLite:AUCTION_ITEM_LIST_UPDATE() decide that the page is incomplete.

    Until the author fixes it in the official version, you can edit Util.lua line 238-240 at AuctionLite:GetListing() to this:

      local name, texture, count, quality, canUse, level,
            levelColHeader, minBid, minIncrement, buyout, bidAmount,
            highBidder, bidderFullName, owner, ownerFullName, sold = GetAuctionItemInfo(kind, i);
    

To post a comment, please login or register a new account.