From f4835c781964824a1d78ae65b475cb16db71b0ce Mon Sep 17 00:00:00 2001 From: bashrc Date: Wed, 14 Jan 2026 18:34:57 +0000 Subject: [PATCH] Archive all the extensions --- posts.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/posts.py b/posts.py index 1651dda53..2ceee29ab 100644 --- a/posts.py +++ b/posts.py @@ -5728,7 +5728,10 @@ def archive_posts_for_person(http_prefix: str, nickname: str, domain: str, archive_path = os.path.join(archive_dir, post_filename) os.rename(file_path, archive_path) - extensions = ('replies', 'votes', 'arrived', 'muted') + extensions = ( + 'votes', 'arrived', 'muted', 'tts', 'reject', 'mitm', + 'edits', 'seen' + ) for ext in extensions: ext_path = file_path.replace('.json', '.' + ext) if os.path.isfile(ext_path):