Remove token data upon registration reset

pull/1105/head
Mikunj 5 years ago
parent 1a0b760fa1
commit a2b60cdd2a

@ -2762,6 +2762,10 @@ async function removeAll() {
db.run('DELETE FROM contactSignedPreKeys;'),
db.run('DELETE FROM attachment_downloads;'),
db.run('DELETE FROM messages_fts;'),
db.run('DELETE FROM servers;'),
db.run('DELETE FROM lastHashes;'),
db.run('DELETE FROM seenMessages;'),
db.run('DELETE FROM sessions;'),
db.run('COMMIT TRANSACTION;'),
]);
});
@ -2784,6 +2788,7 @@ async function removeAllConfiguration() {
db.run('DELETE FROM unprocessed;'),
db.run('DELETE FROM contactPreKeys;'),
db.run('DELETE FROM contactSignedPreKeys;'),
db.run('DELETE FROM servers;'),
db.run('COMMIT TRANSACTION;'),
]);
});

@ -713,13 +713,8 @@ export class RegistrationTabs extends React.Component<{}, State> {
}
private async resetRegistration() {
await window.Signal.Data.removeAllIdentityKeys();
await window.Signal.Data.removeAllPrivateConversations();
window.Whisper.Registration.remove();
// Do not remove all items since they are only set
// at startup.
window.textsecure.storage.remove('identityKey');
window.textsecure.storage.remove('secondaryDeviceStatus');
await window.Signal.Data.removeAll();
await window.storage.fetch();
window.ConversationController.reset();
await window.ConversationController.load();
window.Whisper.RotateSignedPreKeyListener.stop(window.Whisper.events);

Loading…
Cancel
Save