mirror of
https://github.com/krateng/maloja.git
synced 2025-04-13 07:27:12 +03:00
Import from Maloja export now includes album artists
This commit is contained in:
parent
771a5ba3aa
commit
6f16957404
@ -3,7 +3,8 @@ minor_release_name: "Nicole"
|
||||
notes:
|
||||
- "[Architecture] Switched to linuxserver.io container base image"
|
||||
- "[Architecture] Reworked image handling"
|
||||
- "[Feature] Added basic support for albums"
|
||||
- "[Architecture] Removed pre-calculated stats"
|
||||
- "[Feature] Added support for albums"
|
||||
- "[Feature] New start page"
|
||||
- "[Feature] Added UI for track-artist, track-album and album-artist association"
|
||||
- "[Feature] Added inline UI for association and merging in chart lists"
|
||||
|
@ -443,6 +443,7 @@ def parse_maloja(inputf):
|
||||
'track_artists': s['track']['artists'],
|
||||
'track_length': s['track']['length'],
|
||||
'album_name': s['track'].get('album',{}).get('albumtitle','') if s['track'].get('album') is not None else '',
|
||||
'album_artists': s['track'].get('album',{}).get('artists',None) if s['track'].get('album') is not None else '',
|
||||
'scrobble_time': s['time'],
|
||||
'scrobble_duration': s['duration']
|
||||
},'')
|
||||
|
Loading…
x
Reference in New Issue
Block a user