From 56e155300cf9eea6901b26eedd01035c5d4ddf6b Mon Sep 17 00:00:00 2001 From: Andy Balaam Date: Mon, 5 Feb 2024 11:06:58 +0000 Subject: [PATCH] doc: Fix an incorrect URL about Indexed DB Signed-off-by: Andy Balaam --- crates/matrix-sdk-indexeddb/src/crypto_store/migrations.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/matrix-sdk-indexeddb/src/crypto_store/migrations.rs b/crates/matrix-sdk-indexeddb/src/crypto_store/migrations.rs index e2ba8c7bb12..df3c3226c60 100644 --- a/crates/matrix-sdk-indexeddb/src/crypto_store/migrations.rs +++ b/crates/matrix-sdk-indexeddb/src/crypto_store/migrations.rs @@ -318,7 +318,7 @@ async fn prepare_data_for_v7(serializer: &IndexeddbSerializer, db: &IdbDatabase) } // We have finished with the old store. Clear it, since it is faster to - // clear+delete than just delete. See https://www.artificialworlds.net/blog/2024/02/01/deleting-an-indexed-db-store-can-be-incredibly-slow-on-firefox/ + // clear+delete than just delete. See https://www.artificialworlds.net/blog/2024/02/02/deleting-an-indexed-db-store-can-be-incredibly-slow-on-firefox/ // for more details. old_store.clear()?.await?;