mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-23 20:49:06 +01:00
Fix bug
This commit is contained in:
parent
b72d7e9fe5
commit
acaec82841
@ -5,10 +5,7 @@ import $ from 'cafy';
|
||||
import Note, { pack } from '../../../models/note';
|
||||
|
||||
/**
|
||||
* Lists all notes
|
||||
*
|
||||
* @param {any} params
|
||||
* @return {Promise<any>}
|
||||
* Get all notes
|
||||
*/
|
||||
module.exports = (params) => new Promise(async (res, rej) => {
|
||||
// Get 'reply' parameter
|
||||
@ -73,7 +70,7 @@ module.exports = (params) => new Promise(async (res, rej) => {
|
||||
}
|
||||
|
||||
if (media != undefined) {
|
||||
query.mediaIds = media ? { $exists: true, $ne: null } : null;
|
||||
query.mediaIds = media ? { $exists: true, $ne: null } : [];
|
||||
}
|
||||
|
||||
if (poll != undefined) {
|
||||
@ -93,5 +90,5 @@ module.exports = (params) => new Promise(async (res, rej) => {
|
||||
});
|
||||
|
||||
// Serialize
|
||||
res(await Promise.all(notes.map(async note => await pack(note))));
|
||||
res(await Promise.all(notes.map(note => pack(note))));
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user