forked from treehouse/mastodon
Merge pull request #1927 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changesfix/password-length
commit
a34aa2a5f9
|
@ -547,7 +547,7 @@ export default function compose(state = initialState, action) {
|
|||
.setIn(['media_modal', 'dirty'], false)
|
||||
.update('media_attachments', list => list.map(item => {
|
||||
if (item.get('id') === action.media.id) {
|
||||
return fromJS(action.media);
|
||||
return fromJS(action.media).set('unattached', true);
|
||||
}
|
||||
|
||||
return item;
|
||||
|
|
|
@ -436,7 +436,7 @@ export default function compose(state = initialState, action) {
|
|||
.setIn(['media_modal', 'dirty'], false)
|
||||
.update('media_attachments', list => list.map(item => {
|
||||
if (item.get('id') === action.media.id) {
|
||||
return fromJS(action.media);
|
||||
return fromJS(action.media).set('unattached', true);
|
||||
}
|
||||
|
||||
return item;
|
||||
|
|
Loading…
Reference in New Issue