Call super authenticate method in resolve_link_target

This commit is contained in:
I-Al-Istannen 2024-11-05 16:06:34 +01:00
parent e86eccec7a
commit 131dc919dc

View file

@ -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: