From 36a416da7a813bcc648a29e9b524977f780f029a Mon Sep 17 00:00:00 2001 From: io Date: Wed, 16 Jun 2021 04:14:18 +0000 Subject: [PATCH] fix Pleroma.reply() not tagging --- pleroma.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pleroma.py b/pleroma.py index 01d806d..9b8e7cd 100644 --- a/pleroma.py +++ b/pleroma.py @@ -87,7 +87,7 @@ class Pleroma: if account['id'] != user_id and account['id'] not in mentioned_accounts: mentioned_accounts[account.id] = account.acct - status = ''.join('@' + x + ' ' for x in mentioned_accounts.values()) + content + content = ''.join('@' + x + ' ' for x in mentioned_accounts.values()) + content visibility = 'unlisted' if to_status['visibility'] == 'public' else to_status['visibility'] if cw is None and 'spoiler_text' in to_status and to_status['spoiler_text']: