diff --git a/matrix_sdk_base/src/state/state_store.rs b/matrix_sdk_base/src/state/json_store.rs similarity index 100% rename from matrix_sdk_base/src/state/state_store.rs rename to matrix_sdk_base/src/state/json_store.rs diff --git a/matrix_sdk_base/src/state/mod.rs b/matrix_sdk_base/src/state/mod.rs index d2e88d12..cc785de4 100644 --- a/matrix_sdk_base/src/state/mod.rs +++ b/matrix_sdk_base/src/state/mod.rs @@ -18,9 +18,9 @@ use std::collections::HashMap; use serde::{Deserialize, Serialize}; #[cfg(not(target_arch = "wasm32"))] -mod state_store; +mod json_store; #[cfg(not(target_arch = "wasm32"))] -pub use state_store::JsonStore; +pub use json_store::JsonStore; use crate::client::{BaseClient, Token}; use crate::events::push_rules::Ruleset;