aboutsummaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/quickReply.ts9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/plugins/quickReply.ts b/src/plugins/quickReply.ts
index d855f9e..06797bc 100644
--- a/src/plugins/quickReply.ts
+++ b/src/plugins/quickReply.ts
@@ -159,9 +159,12 @@ function getNextMessage(isUp: boolean, isReply: boolean) {
return i === - 1 ? undefined : messages[messages.length - i - 1];
}
-function shouldMention() {
+function shouldMention(message) {
+ const { enabled, userList, shouldPingListed } = Settings.plugins.NoReplyMention;
+ const shouldPing = !enabled || (shouldPingListed === userList.includes(message.author.id));
+
switch (settings.store.shouldMention) {
- case MentionOptions.NO_REPLY_MENTION_PLUGIN: return !Settings.plugins.NoReplyMention.enabled;
+ case MentionOptions.NO_REPLY_MENTION_PLUGIN: return shouldPing;
case MentionOptions.DISABLED: return false;
default: return true;
}
@@ -184,7 +187,7 @@ function nextReply(isUp: boolean) {
type: "CREATE_PENDING_REPLY",
channel,
message,
- shouldMention: shouldMention(),
+ shouldMention: shouldMention(message),
showMentionToggle: channel.guild_id !== null && message.author.id !== meId,
_isQuickReply: true
});