Skip to content

Commit

Permalink
fix(Message): fix typo in sticker_items (#6173)
Browse files Browse the repository at this point in the history
  • Loading branch information
ckohen committed Jul 22, 2021
1 parent 5e70694 commit 870a0de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/structures/Message.js
Expand Up @@ -166,7 +166,7 @@ class Message extends Base {
this.attachments = new Collection(this.attachemnts);
}

if ('sticker_itesm' in data || 'stickers' in data || !partial) {
if ('sticker_items' in data || 'stickers' in data || !partial) {
/**
* A collection of stickers in the message
* @type {Collection<Snowflake, Sticker>}
Expand Down

0 comments on commit 870a0de

Please sign in to comment.