diff --git a/archivebox/core/utils.py b/archivebox/core/utils.py index 1c24fe4d..58376843 100644 --- a/archivebox/core/utils.py +++ b/archivebox/core/utils.py @@ -10,7 +10,10 @@ def get_icons(snapshot: Snapshot) -> str: canon = link.canonical_outputs() out_dir = Path(link.link_dir) - link_tuple = lambda link, method: (link.archive_path, canon[method] or '', canon[method] and (out_dir / (canon[method] or 'notdone')).exists()) + # slow version: highlights icons based on whether files exist or not for that output + # link_tuple = lambda link, method: (link.archive_path, canon[method] or '', canon[method] and (out_dir / (canon[method] or 'notdone')).exists()) + # fast version: all icons are highlighted without checking for outputs in filesystem + link_tuple = lambda link, method: (link.archive_path, canon[method] or '', canon[method]) return format_html( ''