1
0
mirror of https://github.com/darkzoul5/YoutubePlaylistSync.git synced 2026-07-03 12:34:00 +03:00

Comment out assignment of playlist_id in PlaylistDownloader initialization

This commit is contained in:
2025-10-15 20:40:36 +03:00
parent 37bc269092
commit 6203fd36c0
+1 -1
View File
@@ -148,7 +148,7 @@ class PlaylistDownloader:
def __init__(self, config: ConfigLoader, playlist: dict, index: int): def __init__(self, config: ConfigLoader, playlist: dict, index: int):
# Determine a friendly identifier for the playlist # Determine a friendly identifier for the playlist
playlist_id = playlist.get("url") or playlist.get("save_path") or f"playlist #{index+1}" # playlist_id = playlist.get("url") or playlist.get("save_path") or f"playlist #{index+1}"
# Check for missing or empty URL and distinguish videos vs playlists # Check for missing or empty URL and distinguish videos vs playlists
self.url = playlist.get("url") self.url = playlist.get("url")