From d2b58786c0bf152378b72ca4887770fec1c6377d Mon Sep 17 00:00:00 2001 From: Dannon Baker Date: Tue, 19 Mar 2024 23:49:18 -0400 Subject: [PATCH] Fix creation and association of new histories w/ brand new single/remote user --- lib/galaxy/webapps/base/webapp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/galaxy/webapps/base/webapp.py b/lib/galaxy/webapps/base/webapp.py index 3ec0d3cfc94d..1daa9f7c3487 100644 --- a/lib/galaxy/webapps/base/webapp.py +++ b/lib/galaxy/webapps/base/webapp.py @@ -951,8 +951,8 @@ def get_or_create_default_history(self): if default_history: history = default_history self.set_history(history) - else: - history = self.new_history() + else: + history = self.new_history() return history