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": { diff --git a/app/ytdl.py b/app/ytdl.py index a5c8304..e32892e 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")