1
0
Fork 0

Fix archive_org icon "exists"

This commit is contained in:
DanielBatteryStapler 2023-08-15 23:49:54 -04:00 committed by GitHub
parent 68e936e7c2
commit 94dacc49c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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 # The check for archive_org is different, so it has to be handled separately
# get from db (faster) # 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) # get from filesystem (slower)
# target_path = Path(path) / "archive.org.txt" # target_path = Path(path) / "archive.org.txt"
# exists = target_path.exists() # exists = target_path.exists()