Compare commits

...

3 commits

Author SHA1 Message Date
Henry Jameson
589d91d64d Merge branch 'more-fixes' into shigusegubu-themes3 2026-06-30 14:44:39 +03:00
Henry Jameson
7f42e0e5a7 cleanup 2026-06-30 14:44:25 +03:00
Henry Jameson
4aa75a278b fix emoji copying 2026-06-30 14:42:27 +03:00
2 changed files with 2 additions and 5 deletions

View file

@ -435,7 +435,7 @@ export const downloadRemoteEmojiPackZIP = ({
return promisedRequest({
url: EMOJI_PACKS_DL_REMOTE_ZIP_URL,
method: 'POST',
payload: data,
formData: data,
})
}
@ -460,7 +460,7 @@ export const addNewEmojiFile = ({ packName, file, shortcode, filename }) => {
return promisedRequest({
url: EMOJI_UPDATE_FILE_URL(packName),
method: 'POST',
payload: data,
formData: data,
})
}

View file

@ -181,9 +181,6 @@ export const unmuteConversation = ({ id, credentials }) =>
}).then(({ data, ...rest }) => ({ ...rest, data: parseStatus(data) }))
export const vote = ({ pollId, choices, credentials }) => {
const form = new FormData()
form.append('choices', choices)
return promisedRequest({
url: MASTODON_VOTE_URL(encodeURIComponent(pollId)),
method: 'POST',