From 7c7f05f873e901532c783d72f31613e8cdf79727 Mon Sep 17 00:00:00 2001 From: Lars Noack Date: Wed, 23 Nov 2022 08:45:33 +0100 Subject: [PATCH] fixed bug in cle --- src/music_kraken_cli.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/music_kraken_cli.py b/src/music_kraken_cli.py index b473294..afe1ee6 100644 --- a/src/music_kraken_cli.py +++ b/src/music_kraken_cli.py @@ -62,6 +62,7 @@ def search_for_metadata(): exit() case "h" | "help": help_search_metadata() + continue case inp if inp.isdigit(): print() print(search.choose(int(input_))) @@ -69,6 +70,7 @@ def search_for_metadata(): case ".." : print() print(search.get_previous_options()) + continue print() print(search.search_from_query(input_))