summaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/api')
-rw-r--r--src/api/endpoints/drive/stream.ts5
-rw-r--r--src/api/serializers/drive-file.ts2
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);