mirror of
https://github.com/Wojtek242/qobuz-dl.git
synced 2024-11-22 02:55:25 +01:00
Fix #86
This commit is contained in:
parent
049280c178
commit
10040396ad
@ -539,9 +539,11 @@ class QobuzDL:
|
||||
# use dicts to group duplicate albums together by title
|
||||
title_grouped = dict()
|
||||
for item in items:
|
||||
if (t := essence(item["title"])) not in title_grouped:
|
||||
title_grouped[t] = []
|
||||
title_grouped[t].append(item)
|
||||
title_ = essence(item["title"])
|
||||
if title_ not in title_grouped: # ?
|
||||
# if (t := essence(item["title"])) not in title_grouped:
|
||||
title_grouped[title_] = []
|
||||
title_grouped[title_].append(item)
|
||||
|
||||
items = []
|
||||
for albums in title_grouped.values():
|
||||
|
Loading…
Reference in New Issue
Block a user