mirror of
https://git.wownero.com/wowlet/wowlet-backend.git
synced 2024-08-15 01:03:13 +00:00
Reddit: unescape title
This commit is contained in:
parent
a33d241015
commit
135ff3c2e1
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
# Copyright (c) 2020, The Monero Project.
|
||||
# Copyright (c) 2020, dsc@xmr.pm
|
||||
|
||||
import html
|
||||
import settings
|
||||
from fapi.utils import httpget
|
||||
from fapi.tasks import FeatherTask
|
||||
|
@ -45,7 +46,7 @@ class RedditTask(FeatherTask):
|
|||
raise
|
||||
|
||||
blob = [{
|
||||
'title': z['data']['title'],
|
||||
'title': html.unescape(z['data']['title']),
|
||||
'author': z['data']['author'],
|
||||
'url': "https://old.reddit.com" + z['data']['permalink'], # legacy
|
||||
'permalink': z['data']['permalink'],
|
||||
|
|
Loading…
Reference in a new issue