diff --git a/ts/models/message.ts b/ts/models/message.ts index d86455acb..339058372 100644 --- a/ts/models/message.ts +++ b/ts/models/message.ts @@ -846,7 +846,7 @@ export class MessageModel extends Backbone.Model { const chatParams = { identifier: this.id, body, - timestamp: this.get('sent_at') || Date.now(), + timestamp: Date.now(), // force a new timestamp to handle user fixed his clock expireTimer: this.get('expireTimer'), attachments, preview, diff --git a/ts/session/sending/LokiMessageApi.ts b/ts/session/sending/LokiMessageApi.ts index eb5d7863e..d2ecbb800 100644 --- a/ts/session/sending/LokiMessageApi.ts +++ b/ts/session/sending/LokiMessageApi.ts @@ -70,11 +70,11 @@ export async function sendMessage( ); throw e; } - if (!snode) { + if (!usedNodes || usedNodes.length === 0) { throw new window.textsecure.EmptySwarmError(pubKey, 'Ran out of swarm nodes to query'); - } else { - window?.log?.info( - `loki_message:::sendMessage - Successfully stored message to ${pubKey} via ${snode.ip}:${snode.port}` - ); } + + window?.log?.info( + `loki_message:::sendMessage - Successfully stored message to ${pubKey} via ${snode.ip}:${snode.port}` + ); } diff --git a/ts/session/snode_api/SNodeAPI.ts b/ts/session/snode_api/SNodeAPI.ts index bc25631d0..911d4a8d3 100644 --- a/ts/session/snode_api/SNodeAPI.ts +++ b/ts/session/snode_api/SNodeAPI.ts @@ -496,8 +496,8 @@ export async function storeOnNode(targetNode: Snode, params: SendParams): Promis e, `destination ${targetNode.ip}:${targetNode.port}` ); + throw e; } - return false; } /** */ diff --git a/ts/session/snode_api/onions.ts b/ts/session/snode_api/onions.ts index 1c508fefd..f73c99acf 100644 --- a/ts/session/snode_api/onions.ts +++ b/ts/session/snode_api/onions.ts @@ -38,6 +38,9 @@ export interface SnodeResponse { export const NEXT_NODE_NOT_FOUND_PREFIX = 'Next node not found: '; +export const CLOCK_OUT_OF_SYNC_MESSAGE_ERROR = + 'You clock is out of sync with the network. Check your clock'; + // Returns the actual ciphertext, symmetric key that will be used // for decryption, and an ephemeral_key to send to the next hop async function encryptForPubKey(pubKeyX25519hex: string, reqObj: any): Promise { @@ -196,9 +199,8 @@ async function buildOnionGuardNodePayload( function process406Error(statusCode: number) { if (statusCode === 406) { // clock out of sync - console.warn('clock out of sync todo'); // this will make the pRetry stop - throw new pRetry.AbortError('You clock is out of sync with the network. Check your clock.'); + throw new pRetry.AbortError(CLOCK_OUT_OF_SYNC_MESSAGE_ERROR); } } @@ -881,6 +883,10 @@ export async function lokiOnionFetch( // better handle the no connection state throw new Error(ERROR_CODE_NO_CONNECT); } + if (e?.message === CLOCK_OUT_OF_SYNC_MESSAGE_ERROR) { + window?.log?.warn('Its an clock out of sync error '); + throw new pRetry.AbortError(CLOCK_OUT_OF_SYNC_MESSAGE_ERROR); + } throw e; } }