fix continue watching none IDs, add showEmbeddedVideo to useEffect

This commit is contained in:
Simon
2025-01-31 10:38:10 +07:00
parent 702000a493
commit 168412724e
5 changed files with 14 additions and 4 deletions

View File

@@ -68,9 +68,10 @@ class QueryBuilder:
for i in results
if not i.get("watched")
]
continue_ids = {"bool": {"should": ids}}
if not ids:
return None
return continue_ids
return {"bool": {"should": ids}}
def parse_type(self, video_type: str):
"""parse video type"""