also check caption entities
This commit is contained in:
parent
b61933977d
commit
9530e328df
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
hashtags = list(filter(lambda e: e.type == 'hashtag', message.entities + message.caption_entities))
|
||||
if len(hashtags) == 0:
|
||||
return None
|
||||
hashtag = message.parse_entity(hashtags[0])
|
||||
|
|
Loading…
Reference in a new issue