Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
beajer authored Jan 5, 2021
2 parents c18f4ea + afaf0ed commit eff95ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2390,7 +2390,7 @@ console.log(result.objects);
const result = await store.listV2({
delimiter: '/',
prefix: 'a/',
'start-after': 'a/b'
'start-after': 'a/b
});
console.log(result.objects);
```
Expand Down
3 changes: 2 additions & 1 deletion lib/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ proto.list = async function list(query, options) {
objects,
prefixes,
nextMarker: result.data.NextMarker || null,
isTruncated: result.data.IsTruncated === 'true'
isTruncated: result.data.IsTruncated
'true'
};
};

Expand Down
1 change: 0 additions & 1 deletion test/browser/browser.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,6 @@ describe('browser', () => {
}
});
});

});

describe('test-content-type', () => {
Expand Down

0 comments on commit eff95ae

Please sign in to comment.