main
Bob Mottram 2023-01-18 13:35:18 +00:00
parent 6563caf539
commit 154a9e9ef3
1 changed files with 2 additions and 1 deletions

View File

@ -63,7 +63,7 @@ def html_conversation_view(post_id: str,
html_header_with_external_style(css_filename, instance_title, None)
separator_str = html_post_separator(base_dir, None)
text_mode_separator = '<div class="transparent"><hr></div>'
text_mode_separator = '<div class="transparent"><hr></div>\n'
minimize_all_images = False
if nickname in min_images_for_accounts:
@ -101,6 +101,7 @@ def html_conversation_view(post_id: str,
if post_str:
# check for "HTTP/1.1 303 See Other Server"
if 'X-AP-Instance-ID' not in post_str:
print('DEBUG: post_str = ' + post_str)
conv_str += text_mode_separator + separator_str + post_str
conv_str += text_mode_separator + html_footer()