Skip to content

Commit 7ff7649

Browse files
authored
ref: Set _relay_processed to true (#293)
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.
1 parent 1bc66d2 commit 7ff7649

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/actors/events.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ impl EventProcessor {
198198
// TODO: Remove this once cutover is complete.
199199
event.other.insert(
200200
"_relay_processed".to_owned(),
201-
Annotated::new(Value::Bool(false)),
201+
Annotated::new(Value::Bool(true)),
202202
);
203203
}
204204
}

0 commit comments

Comments
 (0)