From 40b48c714f00db45a8a040a469808faed811db09 Mon Sep 17 00:00:00 2001 From: Anthony Narkevicius Date: Mon, 28 Aug 2023 15:43:26 -0700 Subject: [PATCH] Fix GetAll scan functionality (#5) --- TradeSkillMaster_AuctionDB/Modules/Scanning.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TradeSkillMaster_AuctionDB/Modules/Scanning.lua b/TradeSkillMaster_AuctionDB/Modules/Scanning.lua index 3e4e76f..b87f42e 100644 --- a/TradeSkillMaster_AuctionDB/Modules/Scanning.lua +++ b/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.