fix: fileid min length issue

This commit is contained in:
Mar0xy 2023-09-25 19:43:59 +02:00
parent f1c827b815
commit 817203a9e1
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828

View file

@ -1145,7 +1145,7 @@ export default class Misskey implements MegalodonInterface {
status?: string
spoiler_text?: string
sensitive?: boolean
media_ids?: Array<string>
media_ids?: Array<string> | null
poll?: { options?: Array<string>; expires_in?: number; multiple?: boolean; hide_totals?: boolean }
visibility?: "public" | "unlisted" | "private" | "direct"
}
@ -1155,10 +1155,12 @@ export default class Misskey implements MegalodonInterface {
text: _options.status
}
if (_options) {
if (_options.media_ids) {
if (_options.media_ids && _options.media_ids.length > 0) {
params = Object.assign(params, {
fileIds: _options.media_ids
})
} else {
_options.media_ids = null;
}
if (_options.poll) {
let pollParam = {