Skip to content
This repository was archived by the owner on Sep 17, 2024. It is now read-only.

Commit 0a82fe0

Browse files
Update autotag_s3_worker.js (#118)
1 parent ff43aa5 commit 0a82fe0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/workers/autotag_s3_worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class AutotagS3Worker extends AutotagDefaultWorker {
2929
Bucket: this.getBucketName(),
3030
}, (err, res) => {
3131
if (err) {
32-
if (err.code === 'NoSuchTagSet' && err.statusCode === 404) {
32+
if (err.Code === 'NoSuchTagSet' && err.statusCode === 404) {
3333
resolve([]);
3434
} else {
3535
reject(err);

0 commit comments

Comments
 (0)