fix maybe?

This commit is contained in:
Tomáš Mládek 2018-02-06 19:35:18 +01:00 committed by Tomáš Mládek
parent 9530e328df
commit 86b10de944

View file

@ -87,7 +87,7 @@ def download_raw(url, filename, subdir, date):
def get_first_hashtag(message):
hashtags = list(filter(lambda e: e.type == 'hashtag', message.entities + message.caption_entities))
hashtags = list(filter(lambda e: e.type == 'hashtag', list(message.entities + message.caption_entities)))
if len(hashtags) == 0:
return None
hashtag = message.parse_entity(hashtags[0])