mirror of https://gitlab.com/bashrc2/epicyon
Excessive unescaping
parent
f262e02ff1
commit
5e85887cd1
1
inbox.py
1
inbox.py
|
@ -2157,7 +2157,6 @@ def _updateSpeaker(baseDir: str, nickname: str, domain: str,
|
||||||
content = urllib.parse.unquote_plus(postJsonObject['object']['content'])
|
content = urllib.parse.unquote_plus(postJsonObject['object']['content'])
|
||||||
content = html.unescape(content)
|
content = html.unescape(content)
|
||||||
content = removeHtml(htmlReplaceQuoteMarks(content))
|
content = removeHtml(htmlReplaceQuoteMarks(content))
|
||||||
content = content.replace('"', '"').replace(''', "'")
|
|
||||||
summary = ''
|
summary = ''
|
||||||
if postJsonObject['object'].get('summary'):
|
if postJsonObject['object'].get('summary'):
|
||||||
if isinstance(postJsonObject['object']['summary'], str):
|
if isinstance(postJsonObject['object']['summary'], str):
|
||||||
|
|
Loading…
Reference in New Issue