Skip to content

Commit

Permalink
fix: another fix to member names
Browse files Browse the repository at this point in the history
  • Loading branch information
Snazzah committed Jun 21, 2023
1 parent 81c6e5c commit 836e2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/webhookData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export default class WebhookData {
*/
get member(): ExtendedTrelloUser {
const member = this.action.member;
const name = this.action.display?.entities?.member?.text ?? member.fullName;
const name = this.action.display?.entities?.member?.text ?? member?.fullName;
return member
? {
avatar: member.avatarUrl ? member.avatarUrl + '/170.png' : null,
Expand Down

0 comments on commit 836e2b5

Please sign in to comment.