Fixed subscriptable issue

This commit is contained in:
RemixDev 2021-07-05 18:02:08 +02:00
parent f0c3152ffa
commit 4e1485f8d6
No known key found for this signature in database
GPG Key ID: B33962B465BDB51C
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ class Track:
# Make sure there is at least one artist # Make sure there is at least one artist
if len(self.artist['Main']) == 0: if len(self.artist['Main']) == 0:
self.artist['Main'] = [self.mainArtist['name']] self.artist['Main'] = [self.mainArtist.name]
self.position = trackAPI_gw.get('POSITION') self.position = trackAPI_gw.get('POSITION')