mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
fix: [title] fix None title
This commit is contained in:
parent
46c721590d
commit
2145eb7b8a
1 changed files with 4 additions and 2 deletions
|
@ -234,7 +234,9 @@ def extract_title_from_html(html):
|
|||
soup = BeautifulSoup(html, 'html.parser')
|
||||
title = soup.title
|
||||
if title:
|
||||
return str(title.string)
|
||||
title = title.string
|
||||
if title:
|
||||
return str(title)
|
||||
return ''
|
||||
|
||||
def extract_description_from_html(html):
|
||||
|
@ -2022,4 +2024,4 @@ if __name__ == '__main__':
|
|||
# _reprocess_all_hars_cookie_name()
|
||||
# _reprocess_all_hars_etag()
|
||||
# _gzip_all_hars()
|
||||
_reprocess_all_hars_hhhashs()
|
||||
# _reprocess_all_hars_hhhashs()
|
||||
|
|
Loading…
Reference in a new issue