test: fix poll posting

This commit is contained in:
Mar0xy 2023-09-26 01:40:05 +02:00
parent 7df25f036a
commit 96580967fb
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828

View file

@ -1086,11 +1086,11 @@ export default class Misskey implements MegalodonInterface {
let pollParam = { let pollParam = {
choices: options.poll.options, choices: options.poll.options,
expiresAt: null, expiresAt: null,
expiredAfter: options.poll.expires_in expiredAfter: parseInt(options.poll.expires_in.toString())
} }
if (options.poll.multiple !== undefined) { if (options.poll.multiple !== undefined) {
pollParam = Object.assign(pollParam, { pollParam = Object.assign(pollParam, {
multiple: options.poll.multiple multiple: options.poll.multiple.toString() === 'true' ? true : false
}) })
} }
params = Object.assign(params, { params = Object.assign(params, {