Skip to content

Commit

Permalink
ref: Set _relay_processed to true (#293)
Browse files Browse the repository at this point in the history
The `_relay_processed` flag is set to `false`. While this still uniquely identifies that Relay has touched this event, it is confusing. Setting to `true` instead.
  • Loading branch information
jan-auer committed Oct 31, 2019
1 parent 1bc66d2 commit 7ff7649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/actors/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ impl EventProcessor {
// TODO: Remove this once cutover is complete.
event.other.insert(
"_relay_processed".to_owned(),
Annotated::new(Value::Bool(false)),
Annotated::new(Value::Bool(true)),
);
}
}
Expand Down

0 comments on commit 7ff7649

Please sign in to comment.