fix reindex inconsitent video_type

This commit is contained in:
Simon
2025-02-16 15:34:56 +07:00
parent b2337669ca
commit 3a2701f2fa
2 changed files with 2 additions and 1 deletions

View File

@@ -322,7 +322,7 @@ class PendingList(PendingIndex):
duration = vid.get("duration")
if duration and isinstance(duration, int):
if duration > 60:
if duration > 3 * 60:
return False
return is_shorts(vid["id"])