fix quick/searchReply & MessageClickactions not working in dms

This commit is contained in:
V 2023-09-26 03:54:59 +02:00
parent f32d25b641
commit 608a67c9ae
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905
3 changed files with 6 additions and 4 deletions

View file

@ -32,7 +32,7 @@ const messageContextMenuPatch: NavContextMenuPatchCallback = (children, { messag
if (SelectedChannelStore.getChannelId() !== message.channel_id) return;
const channel = ChannelStore.getChannel(message?.channel_id);
if (!channel) return;
if (!PermissionStore.can(PermissionsBits.SEND_MESSAGES, channel)) return;
if (channel.guild_id && !PermissionStore.can(PermissionsBits.SEND_MESSAGES, channel)) return;
// dms and group chats
const dmGroup = findGroupChildrenByChildId("pin", children);