From 2f253d590fe64e0ccc59bcf2f51b5f75132b4b36 Mon Sep 17 00:00:00 2001 From: Marius van den Beek Date: Tue, 11 Jun 2024 07:40:59 +0200 Subject: [PATCH] Revert "[24.1] Fix check for anonymous" --- lib/galaxy/files/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/galaxy/files/__init__.py b/lib/galaxy/files/__init__.py index b13b2e1db8c8..eb3542982883 100644 --- a/lib/galaxy/files/__init__.py +++ b/lib/galaxy/files/__init__.py @@ -476,4 +476,4 @@ def file_sources(self): @property def anonymous(self) -> bool: - return not bool(self._kwd.get("username")) + return bool(self._kwd.get("username"))