From be71c6df56f46a540a332a60c31ffe33d0bb9ae1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Thu, 23 Jan 2025 10:40:20 +0100 Subject: [PATCH] docs: Document that the SyncService requires MSC4186 --- crates/matrix-sdk-ui/src/sync_service.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crates/matrix-sdk-ui/src/sync_service.rs b/crates/matrix-sdk-ui/src/sync_service.rs index 4aa70fbbf..4c7d6a29b 100644 --- a/crates/matrix-sdk-ui/src/sync_service.rs +++ b/crates/matrix-sdk-ui/src/sync_service.rs @@ -329,6 +329,11 @@ struct SyncServiceInner { /// with a Matrix server. It can initiate and maintain the necessary /// synchronization tasks for you. /// +/// **Note**: The [`SyncService`] requires a server with support for [MSC4186], +/// otherwise it will fail with an 404 `M_UNRECOGNIZED` request error. +/// +/// [MSC4186]: https://github.com/matrix-org/matrix-spec-proposals/pull/4186/ +/// /// # Example /// /// ```no_run