Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielc committed Oct 11, 2024
1 parent 79c00c3 commit 7ab6bf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion event-svc/src/event/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ impl EventService {
init,
previous: vec![*data.prev()],
data: MIDDataContainer::new_with_should_index(
data.header().map(|header| header.should_index()).flatten(),
data.header().and_then(|header| header.should_index()),
Some(data.data()),
)
.to_json_bytes()
Expand Down

0 comments on commit 7ab6bf9

Please sign in to comment.