diff --git a/Modules/Misc/LFGList.lua b/Modules/Misc/LFGList.lua index 63359cb7..257402b6 100644 --- a/Modules/Misc/LFGList.lua +++ b/Modules/Misc/LFGList.lua @@ -328,10 +328,10 @@ function LL:UpdateEnumerate(Enumerate) local color = score and C_ChallengeMode_GetDungeonScoreRarityColor(score) or { r = 1.0, g = 1.0, b = 1.0 } scoreText = C.StringWithRGB(score, color) - local bestRun = result.leaderDungeonScoreInfo and result.leaderDungeonScoreInfo.bestRunLevel + local bestRun = result.leaderDungeonScoreInfo and result.leaderDungeonScoreInfo[1] and result.leaderDungeonScoreInfo[1].bestRunLevel if bestRun then - local template = result.leaderDungeonScoreInfo.finishedSuccess and "success" or "greyLight" - bestText = C.StringByTemplate("+" .. result.leaderDungeonScoreInfo.bestRunLevel, template) + local template = result.leaderDungeonScoreInfo[1].finishedSuccess and "success" or "greyLight" + bestText = C.StringByTemplate("+" .. bestRun, template) end self:UpdateAdditionalText(button, scoreText, bestText)