You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.logger.warn(`Original message not found for update. Skipping. Key: ${JSON.stringify(key)}`);
1678
+
this.logger.verbose(
1679
+
`Original message not found for update after ${maxRetries} retries. Skipping. This is expected for protocol messages or ephemeral events not saved to the database. Key: ${JSON.stringify(key)}`,
1680
+
);
1657
1681
continue;
1658
1682
}
1683
+
1684
+
// Sync the incoming key.remoteJid with the stored one.
1685
+
// This mutation is safe and necessary because Baileys events might use LIDs while we store Phone JIDs (or vice versa).
1686
+
// Normalizing ensuring downstream logic uses the identifier that exists in our database.
0 commit comments