mirror of https://github.com/Siphonay/mastodon
Clear spoiler when replying to toot that doesn't also have a spoiler (#1662)
This commit is contained in:
parent
f24daa399b
commit
96715d9af5
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue