1
0
Fork 0
mirror of https://github.com/nathom/streamrip.git synced 2025-05-28 05:54:52 -04:00

Fix SoundCloud search

This commit is contained in:
nathom 2021-07-23 21:38:01 -07:00
parent 65aa1efc38
commit 5ab0fdbc4a
4 changed files with 23 additions and 10 deletions

View file

@ -314,9 +314,9 @@ class MusicDL(list):
continue
if hasattr(item, "id"):
self.db.add(item.id)
self.db.add(str(item.id))
for item_id in item.downloaded_ids:
self.db.add(item_id)
self.db.add(str(item_id))
if isinstance(item, Track):
item.tag()