Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
cmislib 0.5.1
-
None
Description
Any Folder object returned by the Resultset generated in Folder.getTree will fail to do operations cause the Folder instance was provided to the Resultset instead of the Repository instance.
Patch for fixing it:
2912c2912
< return ResultSet(self._cmisClient, self, result)
—
> return ResultSet(self._cmisClient, self._repository, result)