Compare commits

..

No commits in common. "36d0e7bb8aae391509d40a7ef6499bbf2afce478" and "e3933e7dca36b1613ba9a14d08612649df69ab1f" have entirely different histories.

1 changed files with 1 additions and 2 deletions

View File

@ -68,7 +68,7 @@ class Listenbrainz(APIHandler):
# fields that will not be consumed by regular scrobbling
# will go into 'extra'
k:additional[k]
for k in ['track_mbid', 'release_mbid', 'artist_mbids','recording_mbid','tags']
for k in ['release_mbid','artist_mbids','recording_mbid','tags']
if k in additional
}
@ -77,7 +77,6 @@ class Listenbrainz(APIHandler):
'track_title':titlestr,
'album_name':albumstr,
'scrobble_time':timestamp,
'track_length': additional.get("duration"),
**extrafields
},client=client)