Merge pull request #1063 from hbakhtiyor/patch-1
Convert ContentLength of storage to number
This commit is contained in:
commit
e6ff9e486b
|
@ -17,7 +17,7 @@ class S3Storage {
|
|||
const result = await this.s3
|
||||
.headObject({ Bucket: this.bucket, Key: id })
|
||||
.promise();
|
||||
return result.ContentLength;
|
||||
return Number(result.ContentLength);
|
||||
}
|
||||
|
||||
getStream(id) {
|
||||
|
|
Loading…
Reference in New Issue