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 f17c1ba commit c18e03dCopy full SHA for c18e03d
modules/ROOT/partials/plugin-apis/comments-apis.adoc
@@ -139,7 +139,7 @@ events.forEach((event) => {
139
if ((event.type === "create" || event.type === "reply") && event.mentionedUids !== undefined) {
140
console.log(event);
141
if (whoMentionedWho[event.conversationAuthor.author] === undefined) {
142
- whoMentionedWho[event.conversationAuthor.author] = event.mentionedUids;
+ whoMentionedWho[event.conversationAuthor.author] = [...event.mentionedUids];
143
} else {
144
whoMentionedWho[event.conversationAuthor.author].push(...event.mentionedUids);
145
}
0 commit comments