Compare commits

..

2 Commits

Author SHA1 Message Date
syuilo
b74bf97761 10.9.2 2018-10-11 23:52:18 +09:00
syuilo
a090b908bd Fix bug 2018-10-11 23:52:11 +09:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "misskey",
"author": "syuilo <i@syuilo.com>",
"version": "10.9.1",
"version": "10.9.2",
"clientVersion": "1.0.10448",
"codename": "nighthike",
"main": "./built/index.js",

View File

@@ -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 }
}, {