Fix field name for track length

This commit is contained in:
krateng 2022-09-11 20:58:37 +02:00 committed by GitHub
parent 9ae14da397
commit d5f2c254f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class Listenbrainz(APIHandler):
'track_title':titlestr,
'album_name':albumstr,
'scrobble_time':timestamp,
'scrobble_duration': additional.get("duration"),
'track_length': additional.get("duration"),
**extrafields
},client=client)