Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ilude committed May 8, 2024
1 parent f837a2a commit 7d595cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/favicon_finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, cache_dir='static/assets/icons'):
self.full_cache_path = pwd.joinpath(cache_dir)
self.full_cache_path.mkdir(parents=True, exist_ok=True)
self.relative_cache_path = f"/{cache_dir}"
self.processed_domains = set()
self.processed_domains = list()
self.processed_domains_file = pwd.joinpath('configs/processed_domains.json')
self.load_processed_domains()

Expand Down

0 comments on commit 7d595cd

Please sign in to comment.