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.
:eyes:
1 parent 33a4124 commit 8129527Copy full SHA for 8129527
src/github/utils.ts
@@ -556,7 +556,7 @@ export function parseGraphQLReaction(reactionGroups: GraphQL.ReactionGroup[]): R
556
count: group.reactors.totalCount,
557
icon: reactionContentEmojiMapping[group.content].icon,
558
viewerHasReacted: group.viewerHasReacted,
559
- reactors: group.reactors.nodes.map(node => COPILOT_ACCOUNTS[node.login].name ?? node.login)
+ reactors: group.reactors.nodes.map(node => COPILOT_ACCOUNTS[node.login]?.name ?? node.login)
560
};
561
562
return reaction;
0 commit comments