From d0640476c0f421c5e64d3fd6e7df5c89640b5f27 Mon Sep 17 00:00:00 2001 From: KDalu <71458929+KDalu@users.noreply.github.com> Date: Tue, 28 Jan 2025 00:06:41 -0500 Subject: [PATCH] Fixed issue #2 --- zotify/collections.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zotify/collections.py b/zotify/collections.py index 2b16fb1..a4d2486 100644 --- a/zotify/collections.py +++ b/zotify/collections.py @@ -106,6 +106,9 @@ class Playlist(Collection): metadata, ) ) + elif playable_type == "local": + # Ignore local files + pass else: raise ValueError("Unknown playable content", playable_type)