We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abd6c8f commit 35f40caCopy full SHA for 35f40ca
crates/oxide/src/lib.rs
@@ -457,6 +457,7 @@ fn parse_all_blobs(blobs: Vec<Vec<u8>>) -> Vec<String> {
457
let mut result: Vec<_> = blobs
458
.par_iter()
459
.flat_map(|blob| blob.par_split(|x| matches!(x, b'\n')))
460
+ .filter(|blob| !blob.is_empty())
461
.map(|blob| Extractor::unique(blob, Default::default()))
462
.reduce(Default::default, |mut a, b| {
463
a.extend(b);
0 commit comments