Ensure conversation id in storeSession
This commit is contained in:
parent
87747ebae2
commit
091f3653e7
3 changed files with 29 additions and 18 deletions
|
@ -1664,7 +1664,7 @@ export default class MessageSender {
|
|||
proto.timestamp = timestamp;
|
||||
|
||||
const identifier = uuid || e164;
|
||||
const theirUuid = UUID.checkedLookup(identifier);
|
||||
const theirUuid = uuid ? new UUID(uuid) : UUID.checkedLookup(e164);
|
||||
|
||||
const logError = (prefix: string) => (error: Error) => {
|
||||
window.log.error(prefix, error && error.stack ? error.stack : error);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue