From 7a64a5822340007e7605ff16306736388074eb49 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 16 Nov 2022 10:24:00 +0000 Subject: [PATCH] Include recipients in edited dm --- daemon.py | 1 + webapp_create_post.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/daemon.py b/daemon.py index a38d8894b..ab2b9a3d2 100644 --- a/daemon.py +++ b/daemon.py @@ -19225,6 +19225,7 @@ class PubServer(BaseHTTPRequestHandler): print('WARN: no nickname found when receiving ' + post_type + ' path ' + path) return -1 + # get the message id of an edited post edited_postid = None if '?editid=' in path: diff --git a/webapp_create_post.py b/webapp_create_post.py index 8a305e93b..c2ce7fd1b 100644 --- a/webapp_create_post.py +++ b/webapp_create_post.py @@ -280,6 +280,8 @@ def html_new_post(edit_post_params: {}, conversation_id = edited_post_json['object']['conversation'] if edit_post_params.get('replyTo'): in_reply_to = edit_post_params['replyTo'] + if box_name == 'dm': + mentions = edited_post_json['object']['to'] # default subject line or content warning default_subject = ''