Skip to content

Commit 064a5c9

Browse files
committed
Secrets fixes
1 parent 5655bbf commit 064a5c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Core/Messages.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ function addonTable.MessagesMonitorMixin:OnEvent(eventName, ...)
448448
for index = self.messageCount, self.newMessageStartPoint, -1 do
449449
local m = self.messages[index]
450450
local guid = self.formatters[index] and self.formatters[index].playerGUID
451-
if guid == reportedGUID then
451+
if (not issecretvalue or not issecretvalue(guid)) and guid == reportedGUID then
452452
removedIDs[m.id] = true
453453
table.remove(self.messages, index)
454454
self.messagesProcessed[index] = nil

0 commit comments

Comments
 (0)