1
0
Fork 0
mirror of synced 2024-06-05 12:04:36 +12:00

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

This commit is contained in:
Nick Sweeting 2023-08-15 21:34:53 -07:00 committed by GitHub
commit 00ecf57b0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()