git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4100 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
Cory McWilliams 2023-01-02 00:35:37 +00:00
parent f257cccded
commit 235fc9b8f9

View File

@ -156,7 +156,7 @@ async function requestMoreBlobs(request) {
let last = '';
while (true) {
await ssb.sqlStream(
'SELECT id FROM blob_wants WHERE id >= ? ORDER BY id LIMIT 32',
'SELECT id FROM blob_wants WHERE id > ? ORDER BY id LIMIT 32',
[last],
function(row) {
blob_want_discovered(request, row.id);