Skip to content

Commit

Permalink
Fix creation and association of new histories w/ brand new single/rem…
Browse files Browse the repository at this point in the history
…ote user
  • Loading branch information
dannon committed Mar 20, 2024
1 parent 4414013 commit d2b5878
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/webapps/base/webapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit d2b5878

Please sign in to comment.