:pepodrool:

master
justcool393 2022-11-11 03:28:42 -06:00
parent f5912bb4cc
commit 0c7eab0def
1 changed files with 1 additions and 1 deletions

View File

@ -1080,7 +1080,7 @@ def get_post_title(v):
if not content_type or "text/html" not in content_type: abort(400)
# no you can't just parse html with reeeeeeeegex
match = html_title_regex.match(x.content)
match = html_title_regex.match(x.text)
if match and match.lastindex >= 1:
title = match.group(1)