Crawl the info tab of courses again

This got lost in a refactor
This commit is contained in:
I-Al-Istannen
2025-12-02 16:33:04 +01:00
parent 3f5637366e
commit 52f8a1fb67
2 changed files with 3 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ ambiguous situations.
## Fixed
- Event loop errors on Windows with Python 3.14
- Sanitize `/` in headings in kit-ipd crawler
- Crawl info tab again
## 3.8.3 - 2025-07-01

View File

@@ -297,6 +297,8 @@ instance's greatest bottleneck.
page = cast(IliasPage, page)
elements.extend(page.get_child_elements())
if current_element is None and (info_tab := page.get_info_tab()):
elements.append(info_tab)
if description_string := page.get_description():
description.append(description_string)