mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-07 23:44:33 +00:00
[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 { MODAL_OPEN, MODAL_CLOSE } from 'flavours/glitch/actions/modal';
|
||||||
|
import { TIMELINE_DELETE } from 'flavours/glitch/actions/timelines';
|
||||||
|
|
||||||
const initialState = {
|
const initialState = {
|
||||||
modalType: null,
|
modalType: null,
|
||||||
|
@ -11,6 +12,8 @@ export default function modal(state = initialState, action) {
|
||||||
return { modalType: action.modalType, modalProps: action.modalProps };
|
return { modalType: action.modalType, modalProps: action.modalProps };
|
||||||
case MODAL_CLOSE:
|
case MODAL_CLOSE:
|
||||||
return (action.modalType === undefined || action.modalType === state.modalType) ? initialState : state;
|
return (action.modalType === undefined || action.modalType === state.modalType) ? initialState : state;
|
||||||
|
case TIMELINE_DELETE:
|
||||||
|
return (state.modalProps.statusId === action.id) ? initialState : state;
|
||||||
default:
|
default:
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue