From f44d2e6426c71c7495901d2c548fc9078112ae80 Mon Sep 17 00:00:00 2001 From: Isaac Sanders <651597+isaacsanders@users.noreply.github.com> Date: Mon, 19 Jan 2026 12:52:39 -0600 Subject: [PATCH] fix: Handles floats for published date --- backend/download/src/queue.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/download/src/queue.py b/backend/download/src/queue.py index fa532925..cb259f82 100644 --- a/backend/download/src/queue.py +++ b/backend/download/src/queue.py @@ -406,6 +406,9 @@ class PendingList(PendingIndex): if timestamp and isinstance(timestamp, int): return timestamp + if timestamp and isinstance(timestamp, float): + return int(timestamp) + upload_date = video_data.get("upload_date") if upload_date: try: