diff --git a/lib/galaxy/objectstore/__init__.py b/lib/galaxy/objectstore/__init__.py index c27ce3cf13fb..0346b2b8c60f 100644 --- a/lib/galaxy/objectstore/__init__.py +++ b/lib/galaxy/objectstore/__init__.py @@ -995,7 +995,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)