mirror of
https://github.com/Bluewhale1337/ElvUIModernized.git
synced 2026-07-28 00:44:45 +00:00
fix: resolve nil QuestInfoRequiredMoneyText and ChatEdit_InsertLink crashes
This commit is contained in:
@@ -111,7 +111,11 @@ local function LootClick(frame)
|
||||
if IsControlKeyDown() then
|
||||
DressUpItemLink(frame.link)
|
||||
elseif IsShiftKeyDown() then
|
||||
ChatEdit_InsertLink(frame.link)
|
||||
if ChatEdit_InsertLink then
|
||||
ChatEdit_InsertLink(frame.link)
|
||||
elseif ChatFrameEditBox and ChatFrameEditBox:IsVisible() then
|
||||
ChatFrameEditBox:Insert(frame.link)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user