Skip to content

Commit

Permalink
🐛 fix #68
Browse files Browse the repository at this point in the history
  • Loading branch information
agea committed Apr 10, 2020
1 parent 58a3508 commit 2070d55
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/cmis.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cmis.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cmis.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"title": "CmisJS",
"name": "cmis",
"version": "1.0.2",
"version": "1.0.3",
"homepage": "http://github.com/agea/CmisJS",
"description": "a CMIS client library written in Typescript for node and the browser",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/cmis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ export namespace cmis {
let options = new Options();
options.cmisselector = 'content';
options.objectId = objectId;
options.download = (!!download) ? 'attachment' : 'inline';
options.download = download;

return this.get(this.defaultRepository.rootFolderUrl, options);
};
Expand Down

0 comments on commit 2070d55

Please sign in to comment.