Skip to content

Commit

Permalink
Fix check for anonymous
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavcs committed Jun 10, 2024
1 parent 2585d1e commit d0414c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/files/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,4 +476,4 @@ def file_sources(self):

@property
def anonymous(self) -> bool:
return bool(self._kwd.get("username"))
return not bool(self._kwd.get("username"))

0 comments on commit d0414c3

Please sign in to comment.