fix: synapse complains about missing origin

merge-requests/22/head
Timo Kösters 4 years ago
parent dd749b8aee
commit f4078a29eb
No known key found for this signature in database
GPG Key ID: 24DA7517711A2BA4

@ -812,6 +812,12 @@ impl Rooms {
.expect("json is object")
.remove("event_id");
// Add origin because synapse likes that (and it's required in the spec)
pdu_json
.as_object_mut()
.expect("json is object")
.insert("origin".to_owned(), globals.server_name().as_str().into());
ruma::signatures::hash_and_sign_event(
globals.server_name().as_str(),
globals.keypair(),

@ -42,6 +42,7 @@ impl Sending {
.get_mut("unsigned") {
unsigned.as_object_mut().expect("unsigned is object").remove("transaction_id");
}
pdu_json
.as_object_mut()
.expect("json is object")

Loading…
Cancel
Save