Aevann1 2022-11-26 08:11:00 +02:00 committed by geese_suck
parent 234fef2ba1
commit 0c405e6b86
Signed by: geese_suck
GPG Key ID: 4D09E4B0A7264746
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,6 @@
import os
import time
import html
from io import BytesIO
from os import path
from shutil import copyfile
@ -1098,4 +1099,6 @@ def get_post_title(v):
title = match.group(1)
else: abort(400)
title = html.unescape(title)
return {"url": url, "title": title}