Onboarding story
This commit is contained in:
parent
94f318ea08
commit
19a42ed719
42 changed files with 725 additions and 143 deletions
|
@ -97,6 +97,7 @@ import { DAY, HOUR, SECOND } from '../../util/durations';
|
|||
import { getStoryReplyText } from '../../util/getStoryReplyText';
|
||||
import { isIncoming, isOutgoing, isStory } from '../../messages/helpers';
|
||||
import { calculateExpirationTimestamp } from '../../util/expirationTimer';
|
||||
import { isSignalConversation } from '../../util/isSignalConversation';
|
||||
|
||||
export { isIncoming, isOutgoing, isStory };
|
||||
|
||||
|
@ -1648,6 +1649,10 @@ function canReplyOrReact(
|
|||
return false;
|
||||
}
|
||||
|
||||
if (isSignalConversation(conversation)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (isOutgoing(message)) {
|
||||
return (
|
||||
isMessageJustForMe(sendStateByConversationId, ourConversationId) ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue