Compare commits

..

No commits in common. "v1" and "v1.41.1" have entirely different histories.
v1 ... v1.41.1

3 changed files with 1 additions and 3 deletions

View File

@ -460,7 +460,6 @@ def get_input_media(
if isinstance(media, types.MessageMediaDocument): if isinstance(media, types.MessageMediaDocument):
return types.InputMediaDocument( return types.InputMediaDocument(
id=get_input_document(media.document), id=get_input_document(media.document),
spoiler=media.spoiler,
ttl_seconds=ttl or media.ttl_seconds ttl_seconds=ttl or media.ttl_seconds
) )

View File

@ -1,3 +1,3 @@
# Versions should comply with PEP440. # Versions should comply with PEP440.
# This line is parsed in setup.py: # This line is parsed in setup.py:
__version__ = '1.41.2' __version__ = '1.41.1'

View File

@ -34,7 +34,6 @@ BOTS_TOO_MUCH,400,There are too many bots in this chat/channel
BOT_CHANNELS_NA,400,Bots can't edit admin privileges BOT_CHANNELS_NA,400,Bots can't edit admin privileges
BOT_COMMAND_DESCRIPTION_INVALID,400,"The command description was empty, too long or had invalid characters used" BOT_COMMAND_DESCRIPTION_INVALID,400,"The command description was empty, too long or had invalid characters used"
BOT_COMMAND_INVALID,400,The specified command is invalid BOT_COMMAND_INVALID,400,The specified command is invalid
BOT_COMMANDS_TOO_MUCH,400,"The provided commands are too many"
BOT_DOMAIN_INVALID,400,The domain used for the auth button does not match the one configured in @BotFather BOT_DOMAIN_INVALID,400,The domain used for the auth button does not match the one configured in @BotFather
BOT_GAMES_DISABLED,400,Bot games cannot be used in this type of chat BOT_GAMES_DISABLED,400,Bot games cannot be used in this type of chat
BOT_GROUPS_BLOCKED,400,This bot can't be added to groups BOT_GROUPS_BLOCKED,400,This bot can't be added to groups

1 name codes description
34 BOT_CHANNELS_NA 400 Bots can't edit admin privileges
35 BOT_COMMAND_DESCRIPTION_INVALID 400 The command description was empty, too long or had invalid characters used
36 BOT_COMMAND_INVALID 400 The specified command is invalid
BOT_COMMANDS_TOO_MUCH 400 The provided commands are too many
37 BOT_DOMAIN_INVALID 400 The domain used for the auth button does not match the one configured in @BotFather
38 BOT_GAMES_DISABLED 400 Bot games cannot be used in this type of chat
39 BOT_GROUPS_BLOCKED 400 This bot can't be added to groups