mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
Merge branch 'feature-albums' into next_minor_version
This commit is contained in:
commit
50306990fb
@ -160,6 +160,7 @@ def rawscrobble_to_scrobbledict(rawscrobble, fix=True, client=None):
|
||||
|
||||
# New plan, do this further down
|
||||
# NONE always means there is simply no info, so make a guess or whatever the options say
|
||||
# could use the track artists, but probably check if any album with the same name exists first
|
||||
# various artists always needs to be specified via []
|
||||
# TODO
|
||||
|
||||
@ -185,7 +186,7 @@ def rawscrobble_to_scrobbledict(rawscrobble, fix=True, client=None):
|
||||
"rawscrobble":rawscrobble
|
||||
}
|
||||
|
||||
if scrobbledict["track"]["album"]["albumtitle"] is None:
|
||||
if not scrobbledict["track"]["album"]["albumtitle"]:
|
||||
del scrobbledict["track"]["album"]
|
||||
|
||||
return scrobbledict
|
||||
|
Loading…
Reference in New Issue
Block a user