cargo fmt

This commit is contained in:
Jordan Petridis 2019-11-18 10:23:59 +02:00
parent 217362fe14
commit bcd610e2e3
No known key found for this signature in database
GPG Key ID: E8523968931763BE

View File

@ -491,7 +491,7 @@ fn on_download_clicked(ep: &EpisodeWidgetModel, sender: &Sender<Action>) -> Resu
// Update Views // Update Views
sender sender
.send(Action::RefreshEpisodesViewBGR) .send(Action::RefreshEpisodesViewBGR)
.expect("Action channel blew up somehow");; .expect("Action channel blew up somehow");
Ok(()) Ok(())
} }
@ -512,11 +512,11 @@ fn on_play_bttn_clicked(
// Play the episode // Play the episode
sender sender
.send(Action::InitEpisode(episode.rowid())) .send(Action::InitEpisode(episode.rowid()))
.expect("Action channel blew up somehow");; .expect("Action channel blew up somehow");
// Refresh background views to match the normal/greyout title state // Refresh background views to match the normal/greyout title state
sender sender
.send(Action::RefreshEpisodesViewBGR) .send(Action::RefreshEpisodesViewBGR)
.expect("Action channel blew up somehow");; .expect("Action channel blew up somehow");
Ok(()) Ok(())
} }