tracks lexicons and how many times they appeared on the jetstream
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

dusk 7503870a 29914c94

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