mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 09:53:09 +02:00
Fix bug
This commit is contained in:
parent
3046821026
commit
a090b908bd
1 changed files with 2 additions and 2 deletions
|
@ -9,9 +9,9 @@ const limit = promiseLimit(16);
|
|||
|
||||
DriveFile.find({
|
||||
$or: [{
|
||||
withoutChunks: { $exists: false }
|
||||
'metadata.withoutChunks': { $exists: false }
|
||||
}, {
|
||||
withoutChunks: false
|
||||
'metadata.withoutChunks': false
|
||||
}],
|
||||
'metadata.deletedAt': { $exists: false }
|
||||
}, {
|
||||
|
|
Loading…
Reference in a new issue