From 5e85887cd1a58c52956c7a9c7060d63363daa044 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 1 Mar 2021 19:43:33 +0000 Subject: [PATCH] Excessive unescaping --- inbox.py | 1 - 1 file changed, 1 deletion(-) diff --git a/inbox.py b/inbox.py index 532a7dba9..2a33b621f 100644 --- a/inbox.py +++ b/inbox.py @@ -2157,7 +2157,6 @@ def _updateSpeaker(baseDir: str, nickname: str, domain: str, content = urllib.parse.unquote_plus(postJsonObject['object']['content']) content = html.unescape(content) content = removeHtml(htmlReplaceQuoteMarks(content)) - content = content.replace('"', '"').replace(''', "'") summary = '' if postJsonObject['object'].get('summary'): if isinstance(postJsonObject['object']['summary'], str):