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