Skip to content

Commit

Permalink
Discord messed up case
Browse files Browse the repository at this point in the history
  • Loading branch information
bsian03 committed Aug 17, 2021
1 parent 54ef7a4 commit 8a2bc90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/structures/ThreadMember.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class ThreadMember extends Base {
constructor(data, client) {
super(data.user_id);
this.client = client;
this.threadID = data.id;
this.threadID = data.thread_id || data.id; // Thanks Discord
this.joinTimestamp = Date.parse(data.join_timestamp);
}

Expand Down

0 comments on commit 8a2bc90

Please sign in to comment.