File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -1179,6 +1179,7 @@ class Album(LibModel):
1179
1179
"comp" : types .BOOLEAN ,
1180
1180
"mb_albumid" : types .STRING ,
1181
1181
"mb_albumartistid" : types .STRING ,
1182
+ "mb_albumartistids" : types .MULTI_VALUE_DSV ,
1182
1183
"albumtype" : types .STRING ,
1183
1184
"albumtypes" : types .SEMICOLON_SPACE_DSV ,
1184
1185
"label" : types .STRING ,
@@ -1235,6 +1236,7 @@ class Album(LibModel):
1235
1236
"comp" ,
1236
1237
"mb_albumid" ,
1237
1238
"mb_albumartistid" ,
1239
+ "mb_albumartistids" ,
1238
1240
"albumtype" ,
1239
1241
"albumtypes" ,
1240
1242
"label" ,
Original file line number Diff line number Diff line change @@ -129,6 +129,11 @@ def test_import_with_delete_prunes_directory_empty(self):
129
129
self .run_asis_importer (delete = True )
130
130
self .assertNotExists (os .path .join (self .import_dir , b"album" ))
131
131
132
+ def test_album_mb_albumartistids (self ):
133
+ self .run_asis_importer ()
134
+ album = self .lib .albums ()[0 ]
135
+ assert album .mb_albumartistids == album .items ()[0 ].mb_albumartistids
136
+
132
137
@unittest .skipUnless (_common .HAVE_SYMLINK , "need symlinks" )
133
138
def test_import_link_arrives (self ):
134
139
self .run_asis_importer (link = True )
You can’t perform that action at this time.
0 commit comments