diff options
author | Claire <claire.github-309c@sitedethib.com> | 2023-02-19 07:11:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-19 07:11:18 +0100 |
commit | b2283b68388bf5ec03da1ed367566a21a5e957f2 (patch) | |
tree | b76e7e43a373890a3ecf28d3747b84e16ff498a7 /app/javascript | |
parent | 1d9ed916437609e7c5343ed3f96261e907dc5659 (diff) |
Fix focus point of already-attached media not saving after edit (#23566)
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/mastodon/actions/compose.js | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/app/javascript/mastodon/actions/compose.js b/app/javascript/mastodon/actions/compose.js index 72e592935..3756a975b 100644 --- a/app/javascript/mastodon/actions/compose.js +++ b/app/javascript/mastodon/actions/compose.js @@ -165,11 +165,19 @@ export function submitCompose(routerHistory) { // API call. let media_attributes; if (statusId !== null) { - media_attributes = media.map(item => ({ - id: item.get('id'), - description: item.get('description'), - focus: item.get('focus'), - })); + media_attributes = media.map(item => { + let focus; + + if (item.getIn(['meta', 'focus'])) { + focus = `${item.getIn(['meta', 'focus', 'x']).toFixed(2)},${item.getIn(['meta', 'focus', 'y']).toFixed(2)}`; + } + + return { + id: item.get('id'), + description: item.get('description'), + focus, + }; + }); } api(getState).request({ |