mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-28 05:54:52 -04:00
Fix SoundCloud search #122
This commit is contained in:
parent
65aa1efc38
commit
5ab0fdbc4a
4 changed files with 23 additions and 10 deletions
rip
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue