fill storage cache with just created attachment key

pull/1554/head
Audric Ackermann 4 years ago
parent bbe62417e9
commit d775ed3542
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -154,7 +154,8 @@ export const deleteAll = async ({ userDataPath, attachments }: any) => {
await deleteFromDisk(file);
}
window?.log?.info(`deleteAll: deleted ${attachments.length} files`);
// tslint:disable-next-line: no-console
console.log(`deleteAll: deleted ${attachments.length} files`);
};
// createName :: Unit -> IO String

@ -493,6 +493,11 @@ export async function generateAttachmentKeyIfEmpty() {
id: 'local_attachment_encrypted_key',
value: encryptingKey,
});
// be sure to write the new key to the cache. so we can access it straight away
window.textsecure.storage.put(
'local_attachment_encrypted_key',
encryptingKey
);
}
}

Loading…
Cancel
Save