mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-05 13:14:47 +01:00
Fix editing description of media uploads with custom thumbnails (#32221)
This commit is contained in:
parent
b5006539c9
commit
f760899b04
1 changed files with 1 additions and 1 deletions
|
@ -402,7 +402,7 @@ export default function compose(state = initialState, action) {
|
||||||
.set('isUploadingThumbnail', false)
|
.set('isUploadingThumbnail', false)
|
||||||
.update('media_attachments', list => list.map(item => {
|
.update('media_attachments', list => list.map(item => {
|
||||||
if (item.get('id') === action.media.id) {
|
if (item.get('id') === action.media.id) {
|
||||||
return fromJS(action.media);
|
return fromJS(action.media).set('unattached', item.get('unattached'));
|
||||||
}
|
}
|
||||||
|
|
||||||
return item;
|
return item;
|
||||||
|
|
Loading…
Reference in a new issue