From d50a0aea56679660901906a4b4ffd2312ce87886 Mon Sep 17 00:00:00 2001 From: Eltreum <30246110+eltreum0@users.noreply.github.com> Date: Tue, 7 May 2024 20:47:16 -0300 Subject: [PATCH] nil check just in case --- ElvUI_EltreumUI/Modules/Misc/LFGList.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/ElvUI_EltreumUI/Modules/Misc/LFGList.lua b/ElvUI_EltreumUI/Modules/Misc/LFGList.lua index f14ab88dc..2080e3cf3 100644 --- a/ElvUI_EltreumUI/Modules/Misc/LFGList.lua +++ b/ElvUI_EltreumUI/Modules/Misc/LFGList.lua @@ -245,6 +245,7 @@ function ElvUI_EltreumUI:DungeonRoleIcons() local function SearchEntry_Update(entry) if _G.LFGListFrame.EntryCreation:IsShown() then return end if not _G.LFGListFrame.SearchPanel:IsShown() then return end + if not entry.resultID then return end local resultInfo = C_LFGList.GetSearchResultInfo(entry.resultID) local activityTable = C_LFGList.GetActivityInfoTable(resultInfo.activityID) local categoryID = activityTable.categoryID