forked from rDrama/rDrama
1
0
Fork 0
Aevann1 2022-11-26 08:11:00 +02:00
parent 8a80616f84
commit d624dbe2de
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}