Skip to content

Commit

Permalink
Improve compat with uncached items
Browse files Browse the repository at this point in the history
  • Loading branch information
Nevcairiel committed Aug 25, 2024
1 parent 65682ba commit 19a488f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/LibItemCache-1.1/Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ end
function Lib:RestoreItemLink(partial)
local partial = 'item:' .. partial
local _, link, quality = C_Item.GetItemInfo(partial)
return link or partial, C_Item.GetItemIconByID(link), quality
return link or partial, C_Item.GetItemIconByID(link or partial), quality
end


Expand Down

0 comments on commit 19a488f

Please sign in to comment.