aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils.rs
diff options
context:
space:
mode:
authorNathan Jaremko2019-02-24 19:28:38 -0500
committerNathan Jaremko2019-02-24 19:28:38 -0500
commitec84cdd94c14583dbc57a683fc5e511d48c594fd (patch)
tree60b5359972f21d9a5f91959e451fe88809976872 /src/utils.rs
parente80219b5a569a8745fe6423eaeb4f4d8caf03924 (diff)
downloadpodcast-ec84cdd94c14583dbc57a683fc5e511d48c594fd.tar.bz2
Improve subscription behavior
Diffstat (limited to 'src/utils.rs')
-rw-r--r--src/utils.rs1
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)?;