Skip to content

Commit

Permalink
Merge pull request galaxyproject#17810 from jmchilton/older_object_st…
Browse files Browse the repository at this point in the history
…ores

Fix odd object store exception
  • Loading branch information
bgruening authored Mar 25, 2024
2 parents f242245 + 9d015d8 commit 53e0ac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/objectstore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 53e0ac5

Please sign in to comment.