Skip to content

Commit

Permalink
Small fix for invalid lookup.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cidan committed Aug 10, 2024
1 parent 0fd9e66 commit 94f3584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frames/section.lua
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ function sectionFrame:OnTitleRightClick(section)
table.insert(list, data)

-- checking stacks if Merge stacks is enabled and Unmerge at Shop disabled
local stack = addon:GetBagFromBagID(cell.data.bagid).currentView:GetStack(cell.data.itemHash)
local stack = addon:GetBagFromBagID(data.bagid).currentView:GetStack(data.itemHash)
if stack ~= nil then
for subSlotKey in pairs(stack.subItems) do
local subData = items:GetItemDataFromSlotKey(subSlotKey)
Expand Down

0 comments on commit 94f3584

Please sign in to comment.