瀏覽代碼

Merge pull request #1211 from DanielBatteryStapler/DanielBatteryStapler-patch-1

Nick Sweeting 2 年之前
父節點
當前提交
00ecf57b0f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      archivebox/index/html.py

+ 1 - 1
archivebox/index/html.py

@@ -177,7 +177,7 @@ def snapshot_icons(snapshot) -> str:
                 # The check for archive_org is different, so it has to be handled separately
 
                 # get from db (faster)
-                exists = extractor_outputs[extractor] and extractor_outputs[extractor].status == 'succeeded' and extractor_outputs[extractor].output
+                exists = extractor in extractor_outputs and extractor_outputs[extractor] and extractor_outputs[extractor].status == 'succeeded' and extractor_outputs[extractor].output
                 # get from filesystem (slower)
                 # target_path = Path(path) / "archive.org.txt"
                 # exists = target_path.exists()