From 0c2afcedd30c1a9c3747d2aa886e47f289c6157e Mon Sep 17 00:00:00 2001 From: duck <113956421+duckfromdiscord@users.noreply.github.com> Date: Wed, 4 Oct 2023 17:10:58 -0400 Subject: [PATCH] Fix native API top album function requiring an artist --- maloja/apis/native_v1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maloja/apis/native_v1.py b/maloja/apis/native_v1.py index c6f32b5..41bf560 100644 --- a/maloja/apis/native_v1.py +++ b/maloja/apis/native_v1.py @@ -322,7 +322,7 @@ def get_charts_albums_external(**keys): :return: list (List) :rtype: Dictionary""" - k_filter, k_time, _, _, _ = uri_to_internal(keys,forceArtist=True) + k_filter, k_time, _, _, _ = uri_to_internal(keys) ckeys = {**k_filter, **k_time} result = database.get_charts_albums(**ckeys)