Prevent replies/reactions on messages with errors

This commit is contained in:
Ken Powers
2020-02-07 18:13:46 -05:00
committed by GitHub
parent f37e73c723
commit 101070bf42
5 changed files with 68 additions and 31 deletions

View File

@@ -2528,6 +2528,10 @@
})
: null;
if (model && !model.canReply()) {
return;
}
if (model && !model.isNormalBubble()) {
return;
}