Provide a keyboard shortcut to pull all release groups of an artist #233

Merged
wojtek merged 14 commits from 160---provide-a-keyboard-shortcut-to-pull-all-release-groups-of-an-artist into main 2024-12-30 23:42:20 +01:00
Showing only changes of commit dde8268eaa - Show all commits

View File

@ -165,7 +165,7 @@ impl AppMachine<FetchState> {
MbReturn::Match(next_match) => { MbReturn::Match(next_match) => {
AppMachine::match_state(inner, MatchState::new(next_match, fetch)).into() AppMachine::match_state(inner, MatchState::new(next_match, fetch)).into()
} }
_ => unimplemented!(), MbReturn::Fetch(_) => Self::app_fetch_next(inner, fetch),
} }
} }