Don't crash when the class isn't bold

This commit is contained in:
Mylloon 2023-04-23 01:35:00 +02:00
parent 7380364c1c
commit e18b11a5fe
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -85,14 +85,11 @@ pub async fn timetable(
} }
None => None, None => None,
}, },
room: capitalize( room: capitalize(&mut match course.select(&sel_strong).next() {
&mut course Some(el) => el.inner_html().replace("<br>", ""),
.select(&sel_strong) // Error in the site, silently passing... (the room is probably at the professor member)
.next() None => String::new(),
.unwrap() }),
.inner_html()
.replace("<br>", ""),
),
start: location_tracker, start: location_tracker,
size: match course.value().attr("colspan") { size: match course.value().attr("colspan") {
Some(i) => i.parse().unwrap(), Some(i) => i.parse().unwrap(),