Don't retry if not necessary...

This commit is contained in:
2017-03-02 18:43:34 +01:00
parent 1d88e7a60d
commit 0824023866

View File

@@ -191,6 +191,7 @@ fn download_presentation(presentation: &Presentation, out_dir: &Path, auth: &str
let try = try_download(presentation, auth);
if try.is_some() {
tuple = try;
break;
}
tries += 1;
}