Add soundcloud support

This commit is contained in:
BarsTiger
2023-11-13 23:08:58 +02:00
parent e99ba9daa3
commit bc2663c17c
22 changed files with 391 additions and 7 deletions

View File

@@ -15,7 +15,7 @@ class BaseSongItem:
@property
def full_name(self):
return f"{self.all_artists} - {self.name}"
return f"{self.all_artists} - {self.name}" if self.artists else self.name
def __str__(self):
return self.full_name