replies to local-only toots default to local-only, and fix some regex bugs
This commit is contained in:
		
							parent
							
								
									d87d70e89a
								
							
						
					
					
						commit
						3464bb30f8
					
				| 
						 | 
				
			
			@ -180,7 +180,9 @@ export default function compose(state = initialState, action) {
 | 
			
		|||
      map.set('in_reply_to', action.status.get('id'));
 | 
			
		||||
      map.set('text', statusToTextMentions(state, action.status));
 | 
			
		||||
      map.set('privacy', privacyPreference(action.status.get('visibility'), state.get('default_privacy')));
 | 
			
		||||
      map.set('advanced_options', state.get('default_advanced_options'));
 | 
			
		||||
      map.set('advanced_options', new Immutable.Map({
 | 
			
		||||
        do_not_federate: /👁\ufe0f?<\/p>$/.test(action.status.get('content')),
 | 
			
		||||
      }));
 | 
			
		||||
      map.set('focusDate', new Date());
 | 
			
		||||
      map.set('preselectDate', new Date());
 | 
			
		||||
      map.set('idempotencyKey', uuid());
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -38,7 +38,7 @@ class PostStatusService < BaseService
 | 
			
		|||
    DistributionWorker.perform_async(status.id)
 | 
			
		||||
 | 
			
		||||
    # match both with and without U+FE0F (the emoji variation selector)
 | 
			
		||||
    unless /[👁👁️]$/.match?(status.content)
 | 
			
		||||
    unless /👁\ufe0f?\z/.match?(status.content)
 | 
			
		||||
      Pubsubhubbub::DistributionWorker.perform_async(status.stream_entry.id)
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue