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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;
}