forked from mirrors/akkoma-fe
fix erroneous 'reply target is nonexistent' errors when using the user profile mention button
This commit is contained in:
parent
92d3cd4d4a
commit
0b53b63797
1 changed files with 1 additions and 1 deletions
|
|
@ -901,7 +901,7 @@ const postStatus = ({
|
||||||
form.append('poll[options][]', option)
|
form.append('poll[options][]', option)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (inReplyToStatusId) {
|
if (inReplyToStatusId && typeof inReplyToStatusId === 'string') {
|
||||||
form.append('in_reply_to_id', inReplyToStatusId)
|
form.append('in_reply_to_id', inReplyToStatusId)
|
||||||
}
|
}
|
||||||
if (quoteId) {
|
if (quoteId) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue