# HG changeset patch # User yellowfive # Date 1580071032 28800 # Node ID 44ce007189e0aa0d111eadb92801901903bb525b # Parent 1b44e50948302dd41486f4c8b8100bffa02668ce Fix to automatic search on shopping list at auction house. diff -r 1b44e5094830 -r 44ce007189e0 AskMrRobot-Serializer/AskMrRobot-Serializer.lua --- a/AskMrRobot-Serializer/AskMrRobot-Serializer.lua Tue Jan 21 15:55:22 2020 -0800 +++ b/AskMrRobot-Serializer/AskMrRobot-Serializer.lua Sun Jan 26 12:37:12 2020 -0800 @@ -1,6 +1,6 @@ -- AskMrRobot-Serializer will serialize and communicate character data between users. -local MAJOR, MINOR = "AskMrRobot-Serializer", 82 +local MAJOR, MINOR = "AskMrRobot-Serializer", 83 local Amr, oldminor = LibStub:NewLibrary(MAJOR, MINOR) if not Amr then return end -- already loaded by something else diff -r 1b44e5094830 -r 44ce007189e0 AskMrRobot.toc --- a/AskMrRobot.toc Tue Jan 21 15:55:22 2020 -0800 +++ b/AskMrRobot.toc Sun Jan 26 12:37:12 2020 -0800 @@ -1,7 +1,7 @@ ## Interface: 80300 ## Title: Ask Mr. Robot ## Author: Team Robot, Inc. -## Version: 82 +## Version: 83 ## Notes: Gear import/export, combat logging, and more. ## URL: www.askmrrobot.com ## SavedVariables: AskMrRobotDb4 diff -r 1b44e5094830 -r 44ce007189e0 Shopping.lua --- a/Shopping.lua Tue Jan 21 15:55:22 2020 -0800 +++ b/Shopping.lua Sun Jan 26 12:37:12 2020 -0800 @@ -47,7 +47,13 @@ local function onItemClick(widget) local name = widget:GetUserData("itemName") if name then - QueryAuctionItems(name) + + local query = {} + query.searchString = name + query.sorts = {} + C_AuctionHouse.SendBrowseQuery(query) + + --QueryAuctionItems(name) end end