Do not allow replies to self story
This commit is contained in:
parent
d221895b3a
commit
b04fbb6d8d
7 changed files with 70 additions and 17 deletions
|
@ -1667,7 +1667,9 @@ function canReplyOrReact(
|
|||
}
|
||||
|
||||
if (isStory(message)) {
|
||||
return Boolean(message.canReplyToStory);
|
||||
return (
|
||||
Boolean(message.canReplyToStory) && conversation.id !== ourConversationId
|
||||
);
|
||||
}
|
||||
|
||||
// Fail safe.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue