From 7d641d5329f1eb6c9d796cf3162f6135ccf9dc98 Mon Sep 17 00:00:00 2001 From: FliegendeWurst <2012gdwu+github@posteo.de> Date: Fri, 7 Jan 2022 12:21:40 +0100 Subject: [PATCH] Support downloading every course --- src/ilias.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ilias.rs b/src/ilias.rs index 11b0f37..049184c 100644 --- a/src/ilias.rs +++ b/src/ilias.rs @@ -482,7 +482,8 @@ impl Object { None => Course { name, url }, }, "ilobjplugindispatchgui" => PluginDispatch { name, url }, - "ildashboardgui" => Dashboard { url }, + // both the dashboard and the membership overview page work the same + "ildashboardgui" | "ilmembershipoverviewgui" => Dashboard { url }, _ => Generic { name, url }, }) }