diff --git a/src/structures/Message.js b/src/structures/Message.js index 22a2e852620d..5f7507597171 100644 --- a/src/structures/Message.js +++ b/src/structures/Message.js @@ -570,9 +570,9 @@ class Message extends Base { * @readonly */ get pinnable() { - return ( - this.type === 'DEFAULT' && - (!this.guild || this.channel.permissionsFor(this.client.user).has(Permissions.FLAGS.MANAGE_MESSAGES, false)) + return Boolean( + !this.system && + (!this.guild || this.channel.permissionsFor(this.client.user)?.has(Permissions.FLAGS.MANAGE_MESSAGES, false)), ); }