You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I verify that the sliding sync version list is [MatrixRustSDK.SlidingSyncVersion.native] but the try await still fails instantly, saying that "Sliding sync version is missing". I have checked the source code for this SDK and don't see anything strange about the logic that could be causing this error:
let version = self.version.unwrap_or_else(|| client.sliding_sync_version());ifmatches!(version,Version::None){returnErr(crate::error::Error::SlidingSync(Box::new(Error::VersionIsMissing)));}
Am I doing something incorrectly? The client is authorized and built with either .discoverNative or .native when making the client: