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

Commit

Permalink
Fix file path stripping for favorites, search and tags
Browse files Browse the repository at this point in the history
  • Loading branch information
JammingBen committed Feb 7, 2022
1 parent b73e892 commit ce617e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fileManagement.js
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ class Files {
if (result.status !== 207) {
return Promise.reject(this.helpers.buildHttpErrorFromDavResponse(result.status, result.body))
} else {
return Promise.resolve(this.helpers._parseBody(result.body, 2))
return Promise.resolve(this.helpers._parseBody(result.body))
}
})
})
Expand Down

0 comments on commit ce617e3

Please sign in to comment.