diff --git a/Cargo.lock b/Cargo.lock index 1fa0b71..6a1ccb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,7 +2,7 @@ # It is not intended for manual editing. [[package]] name = "KIT-ILIAS-downloader" -version = "0.2.9" +version = "0.2.10" dependencies = [ "anyhow", "futures-util", diff --git a/Cargo.toml b/Cargo.toml index e26a1e1..c054090 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "KIT-ILIAS-downloader" -version = "0.2.9" +version = "0.2.10" authors = ["FliegendeWurst <2012gdwu@web.de>"] license = "GPL-2.0" edition = "2018" diff --git a/src/main.rs b/src/main.rs index d8d4fe7..e33bbd3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -955,7 +955,7 @@ impl Object { "ilobjsurveygui" => Survey { name, url }, "illmpresentationgui" => Presentation { name, url }, "ilrepositorygui" => match url.cmd.as_deref() { - Some("view") => Folder { name, url }, + Some("view") | Some("render") => Folder { name, url }, Some(_) => Generic { name, url }, None => Course { name, url }, },