diff options
Diffstat (limited to 'src/actions.rs')
| -rw-r--r-- | src/actions.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actions.rs b/src/actions.rs index 19fc00c..3c1a6e9 100644 --- a/src/actions.rs +++ b/src/actions.rs @@ -33,7 +33,7 @@ pub fn list_episodes(search: &str) {                      "({}) {}\n",                      episodes.len() - num,                      ep.title().unwrap() -                ); +                ).is_ok();              }              return;          } @@ -109,7 +109,7 @@ pub fn list_subscriptions(state: &State) {      let stdout = io::stdout();      let mut handle = stdout.lock();      for podcast in &state.subscriptions() { -        write!(&mut handle, "{}\n", &podcast.title); +        write!(&mut handle, "{}\n", &podcast.title).is_ok();      }  }  | 
