Clear spoiler when replying to toot that doesn't also have a spoiler (#1662)

This commit is contained in:
Isabelle Knott 2017-04-12 21:17:34 -04:00 committed by Eugen
parent f24daa399b
commit 96715d9af5
1 changed files with 3 additions and 0 deletions

View File

@ -157,6 +157,9 @@ export default function compose(state = initialState, action) {
if (action.status.get('spoiler_text').length > 0) {
map.set('spoiler', true);
map.set('spoiler_text', action.status.get('spoiler_text'));
} else {
map.set('spoiler', false);
map.set('spoiler_text', '');
}
});
case COMPOSE_REPLY_CANCEL: