mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-27 03:32:47 +00:00
Fix redacted_because field being sent as a string
This commit is contained in:
parent
d1c0eaf628
commit
ddcf1a715b
@ -74,9 +74,7 @@ impl PduEvent {
|
|||||||
|
|
||||||
self.unsigned.insert(
|
self.unsigned.insert(
|
||||||
"redacted_because".to_owned(),
|
"redacted_because".to_owned(),
|
||||||
serde_json::to_string(reason)
|
serde_json::to_value(reason).expect("to_value(PduEvent) always works"),
|
||||||
.expect("PduEvent::to_string always works")
|
|
||||||
.into(),
|
|
||||||
);
|
);
|
||||||
|
|
||||||
self.content = new_content.into();
|
self.content = new_content.into();
|
||||||
|
Loading…
Reference in New Issue
Block a user