From 131dc919dcc23559c3c7f1de3f1e6507d3278c41 Mon Sep 17 00:00:00 2001 From: I-Al-Istannen Date: Tue, 5 Nov 2024 16:06:34 +0100 Subject: [PATCH] Call super authenticate method in resolve_link_target --- PFERD/crawl/ilias/ilias_web_crawler.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PFERD/crawl/ilias/ilias_web_crawler.py b/PFERD/crawl/ilias/ilias_web_crawler.py index a391c2f..aad13dc 100644 --- a/PFERD/crawl/ilias/ilias_web_crawler.py +++ b/PFERD/crawl/ilias/ilias_web_crawler.py @@ -490,11 +490,12 @@ instance's greatest bottleneck. return "" return None + auth_id = await self._current_auth_id() target = await impl() if target is not None: return target - await self._authenticate() + await self.authenticate(auth_id) target = await impl() if target is not None: