Browse Source

Fix GetAll scan functionality

pull/5/head^2
Anthony Narkevicius 3 years ago committed by GitHub
parent
commit
0a42bfd3e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      TradeSkillMaster_AuctionDB/Modules/Scanning.lua

2
TradeSkillMaster_AuctionDB/Modules/Scanning.lua

@ -386,7 +386,7 @@ function Scan:GetAllScanQuery()
if not canGetAll then return TSM:Print(L["Can't run a GetAll scan right now."]) end
if not canScan then return TSMAPI:CreateTimeDelay(0.5, Scan.GetAllScanQuery) end
Scan:RegisterEvent("AUCTION_ITEM_LIST_UPDATE")
QueryAuctionItems("", nil, nil, nil, nil, nil, nil, nil, nil, true)
QueryAuctionItems("", nil, nil, 0, 0, 0, 0, 0, 0, true)
TSMAPI.Threading:Start(Scan.ProcessGetAllScan, 1, function()
-- Pass through the cached "full scan complete elapsed" value, which ONLY
-- contains a value if the latest full scan was successfully completed.

Loading…
Cancel
Save