Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
rmgraham committed May 22, 2020
1 parent 1a44839 commit a9a778e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/s3/s3Client.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ module.exports = class S3Client {
};
}

getAndDecryptFile(bucketName, path, key, iv) {
return new Promise(async (resolve, reject) => {
async getAndDecryptFile(bucketName, path, key, iv) {
return new Promise((resolve, reject) => {
try {
const { WritableStreamBuffer } = require('stream-buffers');

Expand Down

0 comments on commit a9a778e

Please sign in to comment.