|  | @@ -293,7 +293,7 @@ class Workspace(DAVCollection):
 | 
	
		
			
			| 293 | 293 |      def getMemberList(self) -> [_DAVResource]:
 | 
	
		
			
			| 294 | 294 |          members = []
 | 
	
		
			
			| 295 | 295 |  
 | 
	
		
			
			| 296 |  | -        children = self.content_api.get_all(None, ContentType.Any, self.workspace)
 | 
	
		
			
			|  | 296 | +        children = self.content_api.get_all(False, ContentType.Any, self.workspace)
 | 
	
		
			
			| 297 | 297 |  
 | 
	
		
			
			| 298 | 298 |          for content in children:
 | 
	
		
			
			| 299 | 299 |              content_path = '%s/%s' % (self.path, self.provider.transform_to_display(content.get_label()))
 | 
	
	
		
			
			|  | @@ -582,7 +582,7 @@ class HistoryFolder(Folder):
 | 
	
		
			
			| 582 | 582 |          if self.content:
 | 
	
		
			
			| 583 | 583 |              children = self.content.children
 | 
	
		
			
			| 584 | 584 |          else:
 | 
	
		
			
			| 585 |  | -            children = self.content_api.get_all(None, ContentType.Any, self.workspace)
 | 
	
		
			
			|  | 585 | +            children = self.content_api.get_all(False, ContentType.Any, self.workspace)
 | 
	
		
			
			| 586 | 586 |          
 | 
	
		
			
			| 587 | 587 |          for content in children:
 | 
	
		
			
			| 588 | 588 |              if content.is_archived == self._is_archived and content.is_deleted == self._is_deleted:
 | 
	
	
		
			
			|  | @@ -634,7 +634,7 @@ class DeletedFolder(HistoryFolder):
 | 
	
		
			
			| 634 | 634 |          if self.content:
 | 
	
		
			
			| 635 | 635 |              children = self.content.children
 | 
	
		
			
			| 636 | 636 |          else:
 | 
	
		
			
			| 637 |  | -            children = self.content_api.get_all(None, ContentType.Any, self.workspace)
 | 
	
		
			
			|  | 637 | +            children = self.content_api.get_all(False, ContentType.Any, self.workspace)
 | 
	
		
			
			| 638 | 638 |  
 | 
	
		
			
			| 639 | 639 |          for content in children:
 | 
	
		
			
			| 640 | 640 |              if content.is_deleted:
 | 
	
	
		
			
			|  | @@ -651,7 +651,7 @@ class DeletedFolder(HistoryFolder):
 | 
	
		
			
			| 651 | 651 |          if self.content:
 | 
	
		
			
			| 652 | 652 |              children = self.content.children
 | 
	
		
			
			| 653 | 653 |          else:
 | 
	
		
			
			| 654 |  | -            children = self.content_api.get_all(None, ContentType.Any, self.workspace)
 | 
	
		
			
			|  | 654 | +            children = self.content_api.get_all(False, ContentType.Any, self.workspace)
 | 
	
		
			
			| 655 | 655 |  
 | 
	
		
			
			| 656 | 656 |          for content in children:
 | 
	
		
			
			| 657 | 657 |              if content.is_deleted:
 | 
	
	
		
			
			|  | @@ -731,7 +731,7 @@ class ArchivedFolder(HistoryFolder):
 | 
	
		
			
			| 731 | 731 |          if self.content:
 | 
	
		
			
			| 732 | 732 |              children = self.content.children
 | 
	
		
			
			| 733 | 733 |          else:
 | 
	
		
			
			| 734 |  | -            children = self.content_api.get_all(None, ContentType.Any, self.workspace)
 | 
	
		
			
			|  | 734 | +            children = self.content_api.get_all(False, ContentType.Any, self.workspace)
 | 
	
		
			
			| 735 | 735 |  
 | 
	
		
			
			| 736 | 736 |          for content in children:
 | 
	
		
			
			| 737 | 737 |              if content.is_archived:
 |