From 8259e051a966f424fa3c8577bd24125fb03b7ab2 Mon Sep 17 00:00:00 2001 From: krateng Date: Sat, 28 Oct 2023 16:34:50 +0200 Subject: [PATCH] Fixed duplication of already captured internal keys in specialkeys --- maloja/malojauri.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/maloja/malojauri.py b/maloja/malojauri.py index e94d46a..b2637f3 100644 --- a/maloja/malojauri.py +++ b/maloja/malojauri.py @@ -81,7 +81,8 @@ def uri_to_internal(keys,accepted_entities=('artist','track','album'),forceTrack #if "remote" in keys: specialkeys["remote"] = keys["remote"] specialkeys["separate"] = (keys.get('separate','no').lower() == 'yes') for k in keys: - if k not in ['separate']: + if k in ['remote','b64']: + # TODO: better solution! specialkeys[k] = keys[k]