We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e48a680 commit 8e57ab6Copy full SHA for 8e57ab6
main.lua
@@ -289,7 +289,7 @@ local instanceLogMatches = {
289
--- @return Frame|nil|false # The button to click, nil if no button should be clicked, false if the text is empty and should be checked again later
290
function DialogKey:GetPopupButton(popupFrame)
291
local fontString = popupFrame.GetTextFontString and popupFrame:GetTextFontString() or popupFrame.text
292
- local text = fontString:GetText()
+ local text = fontString and fontString:GetText()
293
local button1, button2
294
if popupFrame.GetButtons then
295
button1, button2 = unpack(popupFrame:GetButtons())
0 commit comments