Skip to content

Commit 6f23e35

Browse files
Fix video downloads for real
1 parent 0b7e440 commit 6f23e35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ilias/video.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use crate::{util::write_stream_to_file, ILIAS_URL};
1515
use super::{ILIAS, URL};
1616

1717
static XOCT_REGEX: Lazy<Regex> =
18-
Lazy::new(|| Regex::new(r#"(?m)il.Opencast.Paella.player.init\(\s+([\S]+),\s"#).unwrap());
18+
Lazy::new(|| Regex::new(r#"(?m)il.Opencast.Paella.player.init\(\s+([\s\S]+),\s"#).unwrap());
1919

2020
pub async fn download(path: &Path, relative_path: &Path, ilias: Arc<ILIAS>, url: &URL) -> Result<()> {
2121
if ilias.opt.no_videos {

0 commit comments

Comments
 (0)