Don't treat sends to a group with unregistered users as an error
This commit is contained in:
parent
e3ddf280fe
commit
8584a79352
2 changed files with 23 additions and 6 deletions
|
@ -1109,9 +1109,10 @@
|
|||
conversationId: data.destination,
|
||||
type: 'outgoing',
|
||||
sent: true,
|
||||
expirationStartTimestamp: data.expirationStartTimestamp
|
||||
? Math.min(data.expirationStartTimestamp, Date.now())
|
||||
: null,
|
||||
expirationStartTimestamp: Math.min(
|
||||
data.expirationStartTimestamp || data.timestamp || Date.now(),
|
||||
Date.now()
|
||||
),
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue