From de27f5bb622364b817f78ae61e2670f5e4aa7235 Mon Sep 17 00:00:00 2001 From: crate Date: Wed, 2 Oct 2024 02:33:03 +0000 Subject: [PATCH] forgot to await garfbot --- garfbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/garfbot.py b/garfbot.py index 7f52a50..7dc4293 100644 --- a/garfbot.py +++ b/garfbot.py @@ -421,7 +421,7 @@ async def on_error(event, *args, **kwargs): async def garfbot_connect(): while True: try: - garfbot.start(garfkey) + await garfbot.start(garfkey) except Exception as e: e = str(e) logger.error(f"Garfbot couldn't connect! {e}")