implemented fetching of album list

This commit is contained in:
2023-09-12 10:47:25 +02:00
parent b897e9844a
commit 61a5da2bfe
3 changed files with 49 additions and 8 deletions

View File

@@ -113,6 +113,10 @@ class Song(MainObject):
if object_type is Song:
return
if object_type is Lyrics:
self.lyrics_collection.extend(object_list)
return
if object_type is Artist:
self.main_artist_collection.extend(object_list)
return