diff --git a/openslides/utils/collection.py b/openslides/utils/collection.py index da373be74..9c1dad52e 100644 --- a/openslides/utils/collection.py +++ b/openslides/utils/collection.py @@ -106,7 +106,9 @@ class CollectionElement: if method == 'get_restricted_data': container = self else: - container = self.get_full_data() + # TODO: Find a better solution for this hotfix, see issue #3282. + if not self.is_deleted(): + container = self.get_full_data() # End of hack if not self.is_deleted():