tracks lexicons and how many times they appeared on the jetstream

fix(server): sync remainder if all is passed to sync

ptr.pet 7503870a 29914c94

verified
Changed files
+1 -1
server
src
db
+1 -1
server/src/db/mod.rs
···
}
// only sync remainder if we haven't met block size
let remainder = count % block_size;
-
if data_count == 0 && remainder > 0 {
+
if (all || data_count == 0) && remainder > 0 {
nsid_data.push((data_count, handle.clone(), remainder));
}
}