diff --git a/post_parser.py b/post_parser.py index f0b9e19..ed5f95b 100644 --- a/post_parser.py +++ b/post_parser.py @@ -397,9 +397,9 @@ class PostParser: # Add raw JSON debug output if debug is enabled if debug: - debug_json = json.dumps(message, indent=2, ensure_ascii=False, default=str) - debug_json = debug_json.replace('\\n', '
').replace('\\"', '"') - html_content.append(f'
{debug_json}
') + #debug_json = json.dumps(message, indent=2, ensure_ascii=False, default=str) + #debug_json = debug_json.replace('\\n', '
').replace('\\"', '"') + html_content.append(f'
{str(message)}
') html_content = '\n'.join(html_content) return html_content