diff --git a/podcasts-data/src/parser.rs b/podcasts-data/src/parser.rs index 1252e89..198cda4 100644 --- a/podcasts-data/src/parser.rs +++ b/podcasts-data/src/parser.rs @@ -96,5 +96,4 @@ mod tests { let item = Some(&extension); assert_eq!(parse_itunes_duration(item), Some(6970)); } - } diff --git a/podcasts-gtk/src/stacks/show.rs b/podcasts-gtk/src/stacks/show.rs index 17fac5f..7928677 100644 --- a/podcasts-gtk/src/stacks/show.rs +++ b/podcasts-gtk/src/stacks/show.rs @@ -100,11 +100,11 @@ impl ShowStack { if is_episodes_populated(&ign)? { self.sender .send(Action::PopulatedState) - .expect("Action channel blew up somehow");; + .expect("Action channel blew up somehow"); } else { self.sender .send(Action::EmptyState) - .expect("Action channel blew up somehow");; + .expect("Action channel blew up somehow"); }; Ok(()) diff --git a/podcasts-gtk/src/utils.rs b/podcasts-gtk/src/utils.rs index d79fd92..bb1d2d7 100644 --- a/podcasts-gtk/src/utils.rs +++ b/podcasts-gtk/src/utils.rs @@ -251,7 +251,7 @@ where up_sender .send(true) - .expect("Channel was dropped unexpectedly");; + .expect("Channel was dropped unexpectedly"); }); } @@ -430,7 +430,7 @@ pub(crate) fn on_import_clicked(window: >k::ApplicationWindow, sender: &Sender let text = i18n("Selected file could not be accessed."); sender .send(Action::ErrorNotification(text)) - .expect("Action channel blew up somehow");; + .expect("Action channel blew up somehow"); } } } @@ -474,7 +474,7 @@ pub(crate) fn on_export_clicked(window: >k::ApplicationWindow, sender: &Sender let text = i18n("Selected file could not be accessed."); sender .send(Action::ErrorNotification(text)) - .expect("Action channel blew up somehow");; + .expect("Action channel blew up somehow"); } } }