From b0363607c81e175ac7d903287b19420f586f725a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Mon, 24 Jan 2022 00:06:35 +0100 Subject: [PATCH] Quote posts: do not mention anyone MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- app/soapbox/reducers/compose.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/soapbox/reducers/compose.js b/app/soapbox/reducers/compose.js index 29b73aefe..e30caf874 100644 --- a/app/soapbox/reducers/compose.js +++ b/app/soapbox/reducers/compose.js @@ -347,8 +347,8 @@ export default function compose(state = initialState, action) { case COMPOSE_QUOTE: return state.withMutations(map => { map.set('quote', action.status.get('id')); - map.set('to', action.explicitAddressing ? statusToMentionsArray(state, action.status, action.account) : undefined); - map.set('text', !action.explicitAddressing ? statusToTextMentions(state, action.status, action.account) : ''); + map.set('to', undefined); + map.set('text', ''); map.set('privacy', privacyPreference(action.status.get('visibility'), state.get('default_privacy'))); map.set('focusDate', new Date()); map.set('caretPosition', null);