diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-11-08 14:43:42 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-11-08 14:43:42 +0900 |
| commit | 253747ecfb8245d94fe0110e01d8f2ca65a28f5d (patch) | |
| tree | d28b5c50a7425eaa9313c49cf18aabf86b751ab8 /src/api | |
| parent | Merge pull request #884 from syuilo/add-order-to-migration-files (diff) | |
| download | misskey-253747ecfb8245d94fe0110e01d8f2ca65a28f5d.tar.gz misskey-253747ecfb8245d94fe0110e01d8f2ca65a28f5d.tar.bz2 misskey-253747ecfb8245d94fe0110e01d8f2ca65a28f5d.zip | |
Fix bugs
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/endpoints/drive/stream.ts | 5 | ||||
| -rw-r--r-- | src/api/serializers/drive-file.ts | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/api/endpoints/drive/stream.ts b/src/api/endpoints/drive/stream.ts index 32f7ac7e0a..58e7d11678 100644 --- a/src/api/endpoints/drive/stream.ts +++ b/src/api/endpoints/drive/stream.ts @@ -52,15 +52,12 @@ module.exports = (params, user) => new Promise(async (res, rej) => { }; } if (type) { - query.type = new RegExp(`^${type.replace(/\*/g, '.+?')}$`); + query.contentType = new RegExp(`^${type.replace(/\*/g, '.+?')}$`); } // Issue query const files = await DriveFile .find(query, { - fields: { - data: false - }, limit: limit, sort: sort }); diff --git a/src/api/serializers/drive-file.ts b/src/api/serializers/drive-file.ts index 3b76979a44..dcdaa01fab 100644 --- a/src/api/serializers/drive-file.ts +++ b/src/api/serializers/drive-file.ts @@ -49,6 +49,8 @@ export default ( _target.created_at = _file.uploadDate; _target.name = _file.filename; _target.type = _file.contentType; + _target.datasize = _file.length; + _target.md5 = _file.md5; _target = Object.assign(_target, _file.metadata); |