Skip to content

Commit

Permalink
Revert unintended change.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbernstein committed Nov 19, 2024
1 parent 4173f00 commit 82c1ce1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/palace/manager/api/circulation_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ def reload_settings_if_changed(self):
CirculationManager's configuration from the database.
"""
last_update = Configuration.site_configuration_last_update(self._db)
# if last_update > self.site_configuration_last_update:
self.load_settings()
self.site_configuration_last_update = last_update
if last_update > self.site_configuration_last_update:
self.load_settings()
self.site_configuration_last_update = last_update

def get_patron_web_domains(self) -> set[str]:
"""Return the set of patron web client domains."""
Expand Down

0 comments on commit 82c1ce1

Please sign in to comment.