Fix story reply synchronization.

This commit is contained in:
Alex Hart
2022-09-19 14:49:19 -03:00
committed by Cody Henthorne
parent 9326c1726a
commit b1dacf4acd
2 changed files with 3 additions and 3 deletions

View File

@@ -1912,7 +1912,7 @@ public final class MessageContentProcessor {
if (message.getDataMessage().get().getGroupContext().isPresent()) {
parentStoryId = new ParentStoryId.GroupReply(storyMessageId.getId());
} else if (groupStory || SignalDatabase.storySends().canReply(storyAuthorRecipient, storyContext.getSentTimestamp())) {
} else if (groupStory || story.getStoryType().isStoryWithReplies()) {
parentStoryId = new ParentStoryId.DirectReply(storyMessageId.getId());
String quoteBody = "";