[Glitch] Fixed WebUI crash when a status opened in the media modal is deleted
Port 08ae116dc6 to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
			
			
This commit is contained in:
		
							parent
							
								
									8f24f7626a
								
							
						
					
					
						commit
						847779b1e4
					
				| 
						 | 
				
			
			@ -1,4 +1,5 @@
 | 
			
		|||
import { MODAL_OPEN, MODAL_CLOSE } from 'flavours/glitch/actions/modal';
 | 
			
		||||
import { TIMELINE_DELETE } from 'flavours/glitch/actions/timelines';
 | 
			
		||||
 | 
			
		||||
const initialState = {
 | 
			
		||||
  modalType: null,
 | 
			
		||||
| 
						 | 
				
			
			@ -11,6 +12,8 @@ export default function modal(state = initialState, action) {
 | 
			
		|||
    return { modalType: action.modalType, modalProps: action.modalProps };
 | 
			
		||||
  case MODAL_CLOSE:
 | 
			
		||||
    return (action.modalType === undefined || action.modalType === state.modalType) ? initialState : state;
 | 
			
		||||
  case TIMELINE_DELETE:
 | 
			
		||||
    return (state.modalProps.statusId === action.id) ? initialState : state;
 | 
			
		||||
  default:
 | 
			
		||||
    return state;
 | 
			
		||||
  }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue