mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-26 20:07:33 -07:00
Fix bug
This commit is contained in:
parent
2065978a92
commit
680a920098
1 changed files with 2 additions and 2 deletions
|
@ -9,9 +9,9 @@ const limit = promiseLimit(16);
|
||||||
|
|
||||||
DriveFile.find({
|
DriveFile.find({
|
||||||
$or: [{
|
$or: [{
|
||||||
withoutChunks: { $exists: false }
|
'metadata.withoutChunks': { $exists: false }
|
||||||
}, {
|
}, {
|
||||||
withoutChunks: false
|
'metadata.withoutChunks': false
|
||||||
}],
|
}],
|
||||||
'metadata.deletedAt': { $exists: false }
|
'metadata.deletedAt': { $exists: false }
|
||||||
}, {
|
}, {
|
||||||
|
|
Loading…
Reference in a new issue