Skip to content

Commit

Permalink
fix(proxy): Clean dirty proxy domains before deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
Jo-Byr committed Jan 9, 2025
1 parent d78de7b commit e58867f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions trame_simput/core/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -711,6 +711,7 @@ def delete(self, proxy_id, trigger_modified=True):
before_delete = set(self._id_map.keys())
# Delete ourself
proxy_to_delete: Proxy = self._id_map[proxy_id]
self.clean_proxy_domains(proxy_to_delete.id)
del self._id_map[proxy_id]

for tag in proxy_to_delete.tags:
Expand Down

0 comments on commit e58867f

Please sign in to comment.