mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 10:13:09 +02:00
Fix bug
This commit is contained in:
parent
b2a2f98d6a
commit
109dd7f747
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