Skip to content

Commit

Permalink
fix bug with mock mapping service
Browse files Browse the repository at this point in the history
  • Loading branch information
wilyle committed Jan 10, 2024
1 parent edfd9c1 commit ef7758c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mocks/mock_mapping_service/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ async fn get_mapping(State(state): State<Arc<Mutex<MappingState>>>) -> Response
.values
.iter()
.filter_map(|c| {
if state.interactive {
if !state.interactive {
Some((c.value.source.clone(), c.value.clone()))
} else {
match c.end {
Expand Down

0 comments on commit ef7758c

Please sign in to comment.