We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7161e70 commit 8a1163aCopy full SHA for 8a1163a
index.js
@@ -189,7 +189,9 @@ class S3Adapter {
189
await this.createBucket();
190
const command = new GetObjectCommand(params);
191
const response = await this._s3Client.send(command);
192
- if (response && !response.Body) { throw new Error(response); }
+ if (response && !response.Body) {
193
+ throw new Error(response);
194
+ }
195
196
const buffer = await responseToBuffer(response);
197
return buffer;
0 commit comments