From bbbd7942b0aa7f5cb48db12ef3af80cad2de6252 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 3 Aug 2022 13:43:27 +0200 Subject: [PATCH] fix(indexeddb): Export MigrationConflictStrategy --- crates/matrix-sdk-indexeddb/src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/matrix-sdk-indexeddb/src/lib.rs b/crates/matrix-sdk-indexeddb/src/lib.rs index f9380b84e..393688c42 100644 --- a/crates/matrix-sdk-indexeddb/src/lib.rs +++ b/crates/matrix-sdk-indexeddb/src/lib.rs @@ -12,7 +12,10 @@ mod state_store; pub use cryptostore::IndexeddbStore as CryptoStore; #[cfg(feature = "e2e-encryption")] use cryptostore::IndexeddbStoreError; -pub use state_store::{IndexeddbStore as StateStore, IndexeddbStoreBuilder as StateStoreBuilder}; +pub use state_store::{ + IndexeddbStore as StateStore, IndexeddbStoreBuilder as StateStoreBuilder, + MigrationConflictStrategy, +}; /// Create a [`StateStore`] and a [`CryptoStore`] that use the same name and /// passphrase.