From 6533b99efaf2cd80b5e6743655ecb9afdccdde29 Mon Sep 17 00:00:00 2001 From: Oleg A Date: Wed, 25 Apr 2018 07:54:52 +0300 Subject: [PATCH] BuFix: 'Executor._skip_updates' was never awaited --- aiogram/utils/executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiogram/utils/executor.py b/aiogram/utils/executor.py index 9fa7121c..e0a4134f 100644 --- a/aiogram/utils/executor.py +++ b/aiogram/utils/executor.py @@ -294,4 +294,4 @@ class Executor: async def _startup_webhook(self): await self._welcome() if self.skip_updates: - self._skip_updates() + await self._skip_updates()