fix(sdk): Disable the receipts extension temporarily.

Please see https://github.com/matrix-org/matrix-rust-sdk/issues/2037.
This commit is contained in:
Ivan Enderlin
2023-06-16 13:19:05 +02:00
parent 6199ca069c
commit 489898fd40

View File

@@ -128,9 +128,13 @@ impl SlidingSyncBuilder {
cfg.account_data.enabled = Some(true);
}
// TODO: Re-enable once a `lists` and `rooms` will support `*`. See
// https://github.com/matrix-org/matrix-rust-sdk/issues/2037 for more info.
/*
if cfg.receipts.enabled.is_none() {
cfg.receipts.enabled = Some(true);
}
*/
}
self
}