fix: Properly create room summary stripped state

This commit is contained in:
Ginger
2026-04-29 12:44:57 -04:00
parent 4d4d875231
commit 02ccf64d2e
+1 -1
View File
@@ -326,7 +326,7 @@ impl Service {
.await
.into_iter()
.filter_map(Result::ok)
.map(|pdu| RawStrippedState::Pdu(pdu.content))
.map(|pdu| RawStrippedState::Pdu(serde_json::value::to_raw_value(&pdu).unwrap()))
.collect()
}