Change to sensitive when adding content warning from web UI (#4456)
This commit is contained in:
		
							parent
							
								
									74712bf1c6
								
							
						
					
					
						commit
						fc9f793f2e
					
				
					 1 changed files with 5 additions and 1 deletions
				
			
		| 
						 | 
					@ -88,7 +88,7 @@ function appendMedia(state, media) {
 | 
				
			||||||
    map.set('focusDate', new Date());
 | 
					    map.set('focusDate', new Date());
 | 
				
			||||||
    map.set('idempotencyKey', uuid());
 | 
					    map.set('idempotencyKey', uuid());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (prevSize === 0 && state.get('default_sensitive')) {
 | 
					    if (prevSize === 0 && (state.get('default_sensitive') || state.get('spoiler'))) {
 | 
				
			||||||
      map.set('sensitive', true);
 | 
					      map.set('sensitive', true);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
| 
						 | 
					@ -160,6 +160,10 @@ export default function compose(state = initialState, action) {
 | 
				
			||||||
      map.set('spoiler_text', '');
 | 
					      map.set('spoiler_text', '');
 | 
				
			||||||
      map.set('spoiler', !state.get('spoiler'));
 | 
					      map.set('spoiler', !state.get('spoiler'));
 | 
				
			||||||
      map.set('idempotencyKey', uuid());
 | 
					      map.set('idempotencyKey', uuid());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      if (!state.get('sensitive') && state.get('media_attachments').size >= 1) {
 | 
				
			||||||
 | 
					        map.set('sensitive', true);
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
  case COMPOSE_SPOILER_TEXT_CHANGE:
 | 
					  case COMPOSE_SPOILER_TEXT_CHANGE:
 | 
				
			||||||
    return state
 | 
					    return state
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue