Browse Source

fix: synapse complains about missing origin

ruma
Timo Kösters 5 years ago
parent
commit
f4078a29eb
No known key found for this signature in database
GPG Key ID: 24DA7517711A2BA4
  1. 6
      src/database/rooms.rs
  2. 1
      src/database/sending.rs

6
src/database/rooms.rs

@ -812,6 +812,12 @@ impl Rooms { @@ -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(),

1
src/database/sending.rs

@ -42,6 +42,7 @@ impl Sending { @@ -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