fix tagging directly sent files

feature-unify_handlers
Tomáš Mládek 2019-05-02 19:26:39 +02:00
parent c4352df8fc
commit e5c66265f3
1 changed files with 2 additions and 3 deletions

View File

@ -251,9 +251,8 @@ class DelojzaBot:
reply += ' to "' + hashtag + '"'
reply += '...'
audio = False
if any([tag in hashtag for tag in ('AUDIO', 'RADIO')]) and download_fn != self.download_raw:
audio = True
audio = any([tag in hashtag for tag in ('AUDIO', 'RADIO')])
if audio and download_fn != self.download_raw:
reply += ' (And also guessing you want to extract the audio)'
message.reply_text(reply)