fix: add missing await keyword

This commit is contained in:
sebthom
2024-11-21 22:04:32 +01:00
parent 6e76b0ff4c
commit f6748de2b1

View File

@@ -401,7 +401,7 @@ class KleinanzeigenBot(WebScrapingMixin):
await self.handle_after_login_logic()
# Sometimes a second login is required
if not self.is_logged_in():
if not await self.is_logged_in():
await self.fill_login_data_and_send()
await self.handle_after_login_logic()