1
0
mirror of https://git.boykissers.com/pawkey/pawkey-sk.git synced 2025-12-20 04:04:16 +00:00

fix: reply edits not staying attached

This commit is contained in:
Mar0xy
2023-10-29 21:51:12 +01:00
parent cd1083cc30
commit 8736560e5f

View File

@@ -1148,6 +1148,7 @@ export default class Misskey implements MegalodonInterface {
media_ids?: Array<string> | null
poll?: { options?: Array<string>; expires_in?: number; multiple?: boolean; hide_totals?: boolean }
visibility?: "public" | "unlisted" | "private" | "direct"
in_reply_to_id?: string
}
): Promise<Response<Entity.Status>> {
let params = {
@@ -1160,6 +1161,11 @@ export default class Misskey implements MegalodonInterface {
fileIds: _options.media_ids
})
}
if (_options.in_reply_to_id) {
params = Object.assign(params, {
replyId: _options.in_reply_to_id
})
}
if (_options.poll) {
let pollParam = {
choices: _options.poll.options,