From 31d9d88aac790ce3e8ed0f0eaef5c44f5582f796 Mon Sep 17 00:00:00 2001 From: Click&Go Date: Thu, 11 Jun 2026 13:35:04 +0300 Subject: [PATCH] fix(composer): move attribution line outside of blockquote on reply When quoting a post, the "@user wrote:" attribution line was prefixed with `> `, placing it inside the blockquote block. This caused the @mention to go unrecognized by the mention parser, so the quoted user never received a notification. Remove the leading `> ` from `quoteKey` so the attribution line renders above the blockquote, allowing the @mention to trigger a notification. --- static/lib/composer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/lib/composer.js b/static/lib/composer.js index 8990041..654e607 100644 --- a/static/lib/composer.js +++ b/static/lib/composer.js @@ -225,8 +225,8 @@ define('composer', [ const topicLink = `[${escapedTitle}](${postHref})`; const quoteKey = useTopicLink ? - `> ${translator.compile('modules:composer.user-said-in', data.username, topicLink)}\n>\n` : - `> ${translator.compile('modules:composer.user-said', data.username, postHref)}\n>\n`; + `${translator.compile('modules:composer.user-said-in', data.username, topicLink)}\n>\n` : + `${translator.compile('modules:composer.user-said', data.username, postHref)}\n>\n`; if (data.uuid === undefined) { composer.newReply({