mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 07:30:59 -07:00
Fix bug
This commit is contained in:
parent
f929c984e3
commit
a47015e582
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ async function main() {
|
|||
|
||||
const iterate = async () => {
|
||||
if (i == count) return true;
|
||||
const doc = await db.get('drive_files').find({}, { skip: i })
|
||||
const doc = await db.get('drive_files').find({}, { limit: 1, skip: i })
|
||||
const res = await migrateToGridFS(doc);
|
||||
if (!res) {
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue