Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions bindings/matrix-sdk-ffi/src/session_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,11 @@ mod sqlite_session_store {

#[cfg(feature = "indexeddb")]
mod indexeddb_session_store {
use std::sync::Arc;

use super::SessionStoreResult;
use crate::{client_builder::ClientBuildError, helpers::unwrap_or_clone_arc};

Comment on lines +185 to +189
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A fixup patch.

#[derive(Clone, uniffi::Object)]
pub struct IndexedDbSessionStoreBuilder {
name: String,
Expand Down
Loading