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 4e97b0b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 02_assign_ids/grebi_extract_identifiers/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ fn write_ids(k:&[u8], json:&mut JsonParser, writer:&mut BufWriter<io::StdoutLock
let k = json.name();
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 4e97b0b

Please sign in to comment.