Merge pull request #249 from TrueTechy/fix-typo

Fixed typo introduced in #215
This commit is contained in:
mcarlton00 2020-03-26 14:54:46 -04:00 committed by GitHub
commit 7d9b7dec7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -633,7 +633,7 @@ class UpdateWorker(threading.Thread):
elif item['Type'] == 'MusicArtist': elif item['Type'] == 'MusicArtist':
obj = Music(*default_args).artist obj = Music(*default_args).artist
elif item['Type'] == 'AlbumArtist': elif item['Type'] == 'AlbumArtist':
obj = Music(s*default_args).albumartist obj = Music(*default_args).albumartist
elif item['Type'] == 'Audio': elif item['Type'] == 'Audio':
obj = Music(*default_args).song obj = Music(*default_args).song