From c89aa446282f599ec049c2282e2e91f7ed5c6113 Mon Sep 17 00:00:00 2001 From: thar <106284382+eoredthar@users.noreply.github.com> Date: Wed, 5 Mar 2025 17:34:53 -0600 Subject: [PATCH 1/2] Fix: Restore queue when container restarted In case the user tries to restart the container with an updated container but an old queue file, the system checks if the object contains the attributes playlist_strict_mode and playlist_item_limit. If they are not present, it sets them to False and 0, respectively. --- app/ytdl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ytdl.py b/app/ytdl.py index b8fd72e..9d23852 100644 --- a/app/ytdl.py +++ b/app/ytdl.py @@ -238,7 +238,7 @@ class DownloadQueue: async def __import_queue(self): for k, v in self.queue.saved_items(): - await self.add(v.url, v.quality, v.format, v.folder, v.custom_name_prefix, v.playlist_strict_mode, v.playlist_item_limit) + await self.add(v.url, v.quality, v.format, v.folder, v.custom_name_prefix, getattr(v, 'playlist_strict_mode', False), getattr(v, 'playlist_item_limit', 0)) async def initialize(self): log.info("Initializing DownloadQueue") From 154a2216c8ae7c54c6d584e233b8d61843264c2c Mon Sep 17 00:00:00 2001 From: AutoUpdater Date: Sat, 22 Mar 2025 00:08:31 +0000 Subject: [PATCH 2/2] upgraded yt-dlp --- Pipfile.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Pipfile.lock b/Pipfile.lock index 063b209..8bbfc9e 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -878,12 +878,12 @@ }, "yt-dlp": { "hashes": [ - "sha256:3ed218eaeece55e9d715afd41abc450dc406ee63bf79355169dfde312d38fdb8", - "sha256:f33ca76df2e4db31880f2fe408d44f5058d9f135015b13e50610dfbe78245bea" + "sha256:5bcf47b2897254ea3816935a8dde47d243bff556782cced6b16a2b85e6b682ba", + "sha256:80d5ce15f9223e0c27020b861a4c5b72c6ba5d6c957c1b8fd2a022a69783f482" ], "index": "pypi", "markers": "python_version >= '3.9'", - "version": "==2025.2.19" + "version": "==2025.3.21" } }, "develop": {