diff options
| author | Nathan Jaremko | 2019-02-24 19:28:38 -0500 | 
|---|---|---|
| committer | Nathan Jaremko | 2019-02-24 19:28:38 -0500 | 
| commit | ec84cdd94c14583dbc57a683fc5e511d48c594fd (patch) | |
| tree | 60b5359972f21d9a5f91959e451fe88809976872 /src/utils.rs | |
| parent | e80219b5a569a8745fe6423eaeb4f4d8caf03924 (diff) | |
| download | podcast-ec84cdd94c14583dbc57a683fc5e511d48c594fd.tar.bz2 | |
Improve subscription behavior
Diffstat (limited to 'src/utils.rs')
| -rw-r--r-- | src/utils.rs | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/src/utils.rs b/src/utils.rs index e1b2ccb..184fb91 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -125,6 +125,7 @@ pub fn get_xml_dir() -> Result<PathBuf> {  }  pub fn download_rss_feed(url: &str) -> Result<Channel> { +    println!("Downloading RSS feed...");      let mut path = get_podcast_dir()?;      path.push(".rss");      create_dir_if_not_exist(&path)?; | 
