From d775ed3542f2e43e594b7846f5cd29c253a7578e Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 14 Apr 2021 13:27:00 +1000 Subject: [PATCH] fill storage cache with just created attachment key --- ts/attachments/attachments.ts | 3 ++- ts/data/data.ts | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ts/attachments/attachments.ts b/ts/attachments/attachments.ts index 02d5837aa..b4612c8d8 100644 --- a/ts/attachments/attachments.ts +++ b/ts/attachments/attachments.ts @@ -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 diff --git a/ts/data/data.ts b/ts/data/data.ts index 9052aadca..2ae9bb9f8 100644 --- a/ts/data/data.ts +++ b/ts/data/data.ts @@ -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 + ); } }