diff --git a/lib/galaxy/objectstore/__init__.py b/lib/galaxy/objectstore/__init__.py index 6b25071ccad3..a8b796122388 100644 --- a/lib/galaxy/objectstore/__init__.py +++ b/lib/galaxy/objectstore/__init__.py @@ -997,7 +997,7 @@ def _get_concrete_store_badges(self, obj) -> List[BadgeDict]: return self._call_method("_get_concrete_store_badges", obj, [], False) def _is_private(self, obj): - return self._call_method("_is_private", obj, ObjectNotFound, True) + return self._call_method("_is_private", obj, False, False) def _get_store_by(self, obj): return self._call_method("_get_store_by", obj, None, False)