clear in both selections

This commit is contained in:
Love 2023-03-01 22:56:02 +01:00
parent ec2fba9ae2
commit ad584c9b73

View File

@ -82,7 +82,7 @@ async fn main() {
} }
let user_wish = readline let user_wish = readline
.input("Which one do you wish to stream? [ q/f/s/r/d ]: ") .input("Which one do you wish to stream? [ q/f/s/r/c/d ]: ")
.to_lowercase(); .to_lowercase();
let user_wish = user_wish.trim(); let user_wish = user_wish.trim();
@ -110,6 +110,10 @@ async fn main() {
); );
continue; continue;
} }
"c" => {
config.update_last_search_ugly(None);
continue;
}
// Downloadmode // Downloadmode
"d" => { "d" => {
let to_download = let to_download =