Error:
Message: Interface/AddOns/DugisGuideViewerZ/AutoSell.lua line 15:
attempt to call global ‘GetContainerItemInfo’ (a nil value)
—
I thought I figured out the issue and changed line 15 from:
local _, stackSize = GetContainerItemInfo(bagId, slot)
to:
local _, stackSize = C_Container.GetContainerItemInfo(bagId, slot)
That fixed the original error but stackSize is returning nil:
Message: Interface/AddOns/DugisGuideViewerZ/AutoSell.lua line 17:
attempt to perform arithmetic on local ‘stackSize’ (a nil value)