From: Thibaut Girka Date: Tue, 1 Sep 2020 07:19:41 +0000 (+0200) Subject: Fix threaded mode X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=e02f375d22afe8082167db4d931c577ca1ea02ba;p=mastodon.git Fix threaded mode Fixes #1414 --- diff --git a/app/javascript/flavours/glitch/reducers/compose.js b/app/javascript/flavours/glitch/reducers/compose.js index 478883f91..e081c31ad 100644 --- a/app/javascript/flavours/glitch/reducers/compose.js +++ b/app/javascript/flavours/glitch/reducers/compose.js @@ -184,7 +184,7 @@ function continueThread (state, status) { map.set('in_reply_to', status.id); map.update( 'advanced_options', - map => map.merge(new ImmutableMap({ do_not_federate: status.get('local_only') })) + map => map.merge(new ImmutableMap({ do_not_federate: status.local_only })) ); map.set('privacy', status.visibility); map.set('sensitive', false);