Prevent replying to blocked group's stories

This commit is contained in:
trevor-signal 2023-06-14 09:23:06 -04:00 committed by GitHub
parent a255ac02c8
commit f8f0c01169
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1700,6 +1700,10 @@ function canReplyOrReact(
return false;
}
if (conversation.isBlocked) {
return false;
}
if (deletedForEveryone) {
return false;
}