Skip to content

Commit

Permalink
Fix video downloading
Browse files Browse the repository at this point in the history
Fixes #54
  • Loading branch information
FliegendeWurst committed Nov 9, 2024
1 parent 77c0fcb commit 0357b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ilias/plugin_dispatch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ static A_TARGET_BLANK: Lazy<Selector> = Lazy::new(|| Selector::parse(r#"a[target
static VIDEO_ROWS: Lazy<Selector> = Lazy::new(|| Selector::parse(".ilTableOuter > div > table > tbody > tr").unwrap());
static TABLE_CELLS: Lazy<Selector> = Lazy::new(|| Selector::parse("td").unwrap());
static LIST_URL: Lazy<Regex> = Lazy::new(|| {
Regex::new("ilias\\.php\\?ref_id=\\d+&cmdClass=xocteventgui&cmdNode=.{9}&baseClass=ilObjPluginDispatchGUI.*&cmd=asyncGetTableGUI&cmdMode=asynch").unwrap()
Regex::new("ilias\\.php\\?baseClass=ilobjplugindispatchgui&cmdNode=.{9}&cmdClass=xoctEventGUI&ref_id=\\d+&async=true").unwrap()
});

const NO_ENTRIES: &str = "Keine Einträge";
Expand Down

0 comments on commit 0357b0d

Please sign in to comment.