mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
Fix parameter name
This commit is contained in:
parent
cbb3644063
commit
1aad33c3a3
1 changed files with 5 additions and 5 deletions
|
@ -45,9 +45,9 @@ export default (params: any, me: ILocalUser) => new Promise(async (res, rej) =>
|
|||
const [renote = null, renoteErr] = $.bool.optional.nullable.get(params.renote);
|
||||
if (renoteErr) return rej('invalid renote param');
|
||||
|
||||
// Get 'media' parameter
|
||||
const [media = null, mediaErr] = $.bool.optional.nullable.get(params.media);
|
||||
if (mediaErr) return rej('invalid media param');
|
||||
// Get 'withFiles' parameter
|
||||
const [withFiles = null, withFilesErr] = $.bool.optional.nullable.get(params.withFiles);
|
||||
if (withFilesErr) return rej('invalid withFiles param');
|
||||
|
||||
// Get 'poll' parameter
|
||||
const [poll = null, pollErr] = $.bool.optional.nullable.get(params.poll);
|
||||
|
@ -244,8 +244,8 @@ export default (params: any, me: ILocalUser) => new Promise(async (res, rej) =>
|
|||
}
|
||||
}
|
||||
|
||||
if (media != null) {
|
||||
if (media) {
|
||||
if (withFiles != null) {
|
||||
if (withFiles) {
|
||||
push({
|
||||
fileIds: {
|
||||
$exists: true,
|
||||
|
|
Loading…
Reference in a new issue