]> cat aescling's git repositories - mastodon.git/commitdiff
Fix local-only toggle being buggy when replying to remote toot
authorClaire <claire.github-309c@sitedethib.com>
Wed, 12 May 2021 09:38:03 +0000 (11:38 +0200)
committerClaire <claire.github-309c@sitedethib.com>
Wed, 12 May 2021 10:38:21 +0000 (12:38 +0200)
app/javascript/flavours/glitch/reducers/compose.js

index e081c31ad93737c07b34e892b4f05205735566e4..e989401d87cbc22484a8764c6221815b69525d01 100644 (file)
@@ -383,7 +383,7 @@ export default function compose(state = initialState, action) {
       map.set('privacy', privacyPreference(action.status.get('visibility'), state.get('default_privacy')));
       map.update(
         'advanced_options',
-        map => map.merge(new ImmutableMap({ do_not_federate: action.status.get('local_only') }))
+        map => map.merge(new ImmutableMap({ do_not_federate: !!action.status.get('local_only') }))
       );
       map.set('focusDate', new Date());
       map.set('caretPosition', null);
@@ -501,7 +501,7 @@ export default function compose(state = initialState, action) {
   case COMPOSE_DOODLE_SET:
     return state.mergeIn(['doodle'], action.options);
   case REDRAFT:
-    const do_not_federate = action.status.get('local_only', false);
+    const do_not_federate = !!action.status.get('local_only');
     let text = action.raw_text || unescapeHTML(expandMentions(action.status));
     if (do_not_federate) text = text.replace(/ ?👁\ufe0f?\u200b?$/, '');
     return state.withMutations(map => {