Provide a keyboard shortcut to sync all existing albums with MusicBrainz #167

Merged
wojtek merged 13 commits from 166---provide-a-keyboard-shortcut-to-sync-all-existing-albums-with-musicbrainz into main 2024-08-27 17:55:53 +02:00
Showing only changes of commit 59b675562d - Show all commits

View File

@ -94,7 +94,10 @@ impl<MH: IMusicHoard> IAppInteractBrowse for AppMachine<MH, AppBrowse> {
let client = match MusicBrainzApiClient::new(MUSICHOARD_TUI_HTTP_USER_AGENT) { let client = match MusicBrainzApiClient::new(MUSICHOARD_TUI_HTTP_USER_AGENT) {
Ok(client) => client, Ok(client) => client,
Err(err) => { Err(err) => {
return AppMachine::error(self.inner, format!("cannot fetch: {}", err.to_string())) return AppMachine::error(
self.inner,
format!("cannot fetch: HTTP client init failed: {}", err.to_string()),
)
.into() .into()
} }
}; };