diff --git a/aiogram/utils/payload.py b/aiogram/utils/payload.py index 8ab7467d..277573c9 100644 --- a/aiogram/utils/payload.py +++ b/aiogram/utils/payload.py @@ -19,7 +19,7 @@ def generate_payload(exclude=None, **kwargs): exclude = [] return {key: value for key, value in kwargs.items() if key not in exclude + DEFAULT_FILTER - and value + and value is not None and not key.startswith('_')}