From 1cbc2b717a76751725f776483b611bd6b43525cf Mon Sep 17 00:00:00 2001 From: I-Al-Istannen Date: Wed, 10 Apr 2024 01:01:59 +0200 Subject: [PATCH] Fix personal desktop crawling with ILIAS 8 --- CHANGELOG.md | 3 +++ PFERD/crawl/ilias/kit_ilias_web_crawler.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a76508e..36768b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,9 @@ ambiguous situations. ## Unreleased +### Fixed +- Crawling of personal desktop with ILIAS 8 + ## 3.5.1 - 2024-04-09 ### Added diff --git a/PFERD/crawl/ilias/kit_ilias_web_crawler.py b/PFERD/crawl/ilias/kit_ilias_web_crawler.py index 7d6b309..371ffb3 100644 --- a/PFERD/crawl/ilias/kit_ilias_web_crawler.py +++ b/PFERD/crawl/ilias/kit_ilias_web_crawler.py @@ -228,7 +228,7 @@ instance's greatest bottleneck. await self._crawl_url(root_url, expected_id=course_id) async def _crawl_desktop(self) -> None: - appendix = r"ILIAS\PersonalDesktop\PDMainBarProvider|mm_pd_sel_items" + appendix = r"ILIAS\Repository\Provider\RepositoryMainBarProvider|mm_pd_sel_items" appendix = appendix.encode("ASCII").hex() await self._crawl_url(self._base_url + "/gs_content.php?item=" + appendix)