Skip to content

Commit

Permalink
fix json parsing issues in extract identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesamcl committed Sep 25, 2024
1 parent 6c45fd8 commit 5bb1f32
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 02_assign_ids/grebi_extract_identifiers/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ fn write_ids(k:&[u8], json:&mut JsonParser, writer:&mut BufWriter<io::StdoutLock
if k.eq(b"grebi:value") {
write_ids(k, json, writer, wrote_any);
break;
} else {
json.value(); // skip
}
}
json.end_object();
Expand Down

0 comments on commit 5bb1f32

Please sign in to comment.