Allow tweeting images without caption

This commit is contained in:
Klaus-Uwe Mitterer 2017-04-06 22:48:45 +02:00
parent a4c560baf2
commit 520fff4402

View file

@ -59,6 +59,7 @@ def captionHelper(bot, update):
else: else:
args = update.message.caption.split() args = update.message.caption.split()
try:
if args[0].startswith("/"): if args[0].startswith("/"):
try: try:
feature = commands[args[0][1:]] feature = commands[args[0][1:]]
@ -69,6 +70,8 @@ def captionHelper(bot, update):
except: except:
update.message.reply_text(bottools.strings.unknownCommand) update.message.reply_text(bottools.strings.unknownCommand)
else: else:
raise ValueError()
except:
explicitTweet(bot, update, args) explicitTweet(bot, update, args)
def mentionHelper(bot, update): def mentionHelper(bot, update):