@ -940,7 +931,7 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
// if change was made remotely, don't send it to the contact/group
if(receivedAt||fromSync){
window.log.debug(
`WIP: updateExpireTimer() We dont send an ExpireTimerUpdate because this was a remote change receivedAt: ${receivedAt} fromSync: ${fromSync}`
`[updateExpireTimer] We dont send an ExpireTimerUpdate because this was a remote change receivedAt: ${receivedAt} fromSync: ${fromSync} for ${this.id}`
// make sure to write the changes to the database now as the `AvatarDownloadJob` triggered by updateOurProfileLegacyOrViaLibSession might take some time before getting run
@ -405,11 +392,6 @@ async function handleContactsUpdate(result: IncomingConfResult): Promise<Incomin
`WIP: [applyConvoVolatileUpdateFromWrapper] invalid expiry value returned from snode. We will keep the local value.\nmessageHash: ${messageHashes[index]},`
`[applyConvoVolatileUpdateFromWrapper] invalid expiry value returned from snode. We will keep the local value of ${messages2Expire
@ -123,10 +121,10 @@ export async function processExpireRequestResponse(
});
if(!isValid){
window.log.warn(
`WIP: [processExpireRequestResponse] Signature verification failed on ${
window.log.error(
`[processExpireRequestResponse] Signature verification failed on ${
targetNode.pubkey_ed25519
}!\n${JSON.stringify(messageHashes)}`
}\n${JSON.stringify(messageHashes)}`
);
continue;
}
@ -188,19 +186,8 @@ async function expireOnNodes(
);
}
// window.log.debug(
// `WIP: [expireOnNodes] Success!\nHere are the results from one of the snodes.\nmessageHash: ${messageHash} \nexpiry: ${expiry} \nexpires at: ${new Date(
// NOTE batch requests have their own retry logic which includes abort errors that will break our retry logic so we need to catch them and throw regular errors
if(errinstanceofpRetry.AbortError){
throwError(err.message);
@ -224,7 +211,7 @@ export async function buildExpireRequest(
if(extend&&shorten){
window.log.error(
'WIP: [buildExpireRequest] We cannot extend and shorten a message at the same time',
'[buildExpireRequest] We cannot extend and shorten a message at the same time',
messageHash
);
returnnull;
@ -235,16 +222,11 @@ export async function buildExpireRequest(
`WIP: [getExpiriesFromNodes] Success!\nHere are the results.\nexpirationResults: ${Object.entries(
expirationResults
)}`
);
returnexpiryTimestamps;
}catch(err){
window?.log?.warn(
'WIP: [getExpiriesFromNodes] - send error:',
err.message||err,
`destination ${targetNode.ip}:${targetNode.port}`
);
// NOTE batch requests have their own retry logic which includes abort errors that will break our retry logic so we need to catch them and throw regular errors
if(errinstanceofpRetry.AbortError){
throwError(err.message);
@ -137,7 +121,7 @@ export async function buildGetExpiriesRequest(
// TODO legacy messages support will be removed in a future release
if(timestamp){
if(!isValidUnixTimestamp(timestamp)){
window.log.debug(
`WIP: [setExpirationStartTimestamp] We compared 2 timestamps for a disappearing message (${mode}) and the argument timestamp is invalid`
`[setExpirationStartTimestamp] We compared 2 timestamps for a disappearing message (${mode}) and the argument timestamp is not a invalid unix timestamp.${
messageId?`messageId: ${messageId}`:''
}`
);
returnundefined;
}
window.log.debug(
`WIP: [setExpirationStartTimestamp] We compare 2 timestamps for a disappearing message (${mode}):\nexpirationStartTimestamp `,
'WIP: [setExpirationStartTimestamp] Disappearing message mode has been turned off. We can safely ignore this.'
);
// window.log.debug(
//`[setExpirationStartTimestamp] Disappearing message mode has been turned off. We can safely ignore this. ${messageId ? `messageId: ${messageId} ` : ''}`