Fix handling nested ILIAS folders

This commit is contained in:
I-Al-Istannen 2021-05-23 18:29:28 +02:00
parent 79efdb56f7
commit d97d6bf147

View File

@ -239,7 +239,7 @@ class KitIliasWebCrawler(HttpCrawler):
# Fill up our task list with the found elements
await gather_elements()
tasks = [self._handle_ilias_element(PurePath("."), element) for element in elements]
tasks = [self._handle_ilias_element(path, element) for element in elements]
# And execute them
await self.gather(tasks)