diff --git a/videoarchiver/queue/models.py b/videoarchiver/queue/models.py index 35eca56..4817daf 100644 --- a/videoarchiver/queue/models.py +++ b/videoarchiver/queue/models.py @@ -16,9 +16,10 @@ class QueueItem: """Represents an item in the video processing queue""" url: str - message_id: str - channel_id: str - user_id: str + message_id: int # Changed to int for Discord ID + channel_id: int # Changed to int for Discord ID + author_id: int # Changed to int for Discord ID + guild_id: int # Changed to int for Discord ID added_at: datetime = field(default_factory=datetime.utcnow) status: str = "pending" retries: int = 0