Story Status for landing page and my stories.

This commit is contained in:
Alex Hart
2022-03-10 12:13:36 -04:00
committed by Cody Henthorne
parent 1ac8701ada
commit 1f82ceecc6
7 changed files with 172 additions and 20 deletions

View File

@@ -58,4 +58,20 @@ public class OutgoingSecureMediaMessage extends OutgoingMediaMessage {
getLinkPreviews(),
getMentions());
}
public @NonNull OutgoingSecureMediaMessage withSentTimestamp(long sentTimestamp) {
return new OutgoingSecureMediaMessage(getRecipient(),
getBody(),
getAttachments(),
sentTimestamp,
getDistributionType(),
getExpiresIn(),
isViewOnce(),
getStoryType(),
getParentStoryId(),
getOutgoingQuote(),
getSharedContacts(),
getLinkPreviews(),
getMentions());
}
}