From faa5cf54eb0738cc58e08d2ecb7ebfa95e4316c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Thu, 10 Mar 2022 17:42:37 +0100 Subject: [PATCH] indexeddb: Make make_store_config public --- crates/matrix-sdk-indexeddb/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/matrix-sdk-indexeddb/src/lib.rs b/crates/matrix-sdk-indexeddb/src/lib.rs index 1f425b94e..821006431 100644 --- a/crates/matrix-sdk-indexeddb/src/lib.rs +++ b/crates/matrix-sdk-indexeddb/src/lib.rs @@ -41,7 +41,7 @@ async fn open_stores_with_name( /// Create a [`StoreConfig`] with an opened indexeddb [`StateStore`] that uses /// the given name and passphrase. If `encryption` is enabled, a [`CryptoStore`] /// with the same parameters is also opened. -async fn make_store_config( +pub async fn make_store_config( name: impl Into, passphrase: Option<&str>, ) -> Result {