1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-17 20:01:44 +02:00

fix: Return empty QuerySet instead of list

This commit is contained in:
JDC
2020-11-19 21:53:22 -05:00
committed by Nick Sweeting
parent 823df34080
commit fb67d6684c

View File

@@ -51,7 +51,7 @@ def query_search_index(query: str, out_dir: Path=OUTPUT_DIR) -> QuerySet:
qsearch = Snapshot.objects.filter(pk__in=snapshot_ids)
return qsearch
else:
return []
return Snapshot.objects.none()
@enforce_types
def flush_search_index(snapshots: QuerySet):