mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-15 15:18:06 +09:00
Fix bug
This commit is contained in:
parent
dd65b65831
commit
4772a23e8f
@ -3,7 +3,7 @@ import Meta from '../../../../models/meta';
|
|||||||
|
|
||||||
export default () => new Promise(async (res, rej) => {
|
export default () => new Promise(async (res, rej) => {
|
||||||
const meta = await Meta.findOne({});
|
const meta = await Meta.findOne({});
|
||||||
const hidedTags = (meta.hidedTags || []).map(t => t.toLowerCase());
|
const hidedTags = meta ? (meta.hidedTags || []).map(t => t.toLowerCase()) : [];
|
||||||
|
|
||||||
const span = 1000 * 60 * 60 * 24 * 7; // 1週間
|
const span = 1000 * 60 * 60 * 24 * 7; // 1週間
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ const max = 5;
|
|||||||
*/
|
*/
|
||||||
export default () => new Promise(async (res, rej) => {
|
export default () => new Promise(async (res, rej) => {
|
||||||
const meta = await Meta.findOne({});
|
const meta = await Meta.findOne({});
|
||||||
const hidedTags = (meta.hidedTags || []).map(t => t.toLowerCase());
|
const hidedTags = meta ? (meta.hidedTags || []).map(t => t.toLowerCase()) : [];
|
||||||
|
|
||||||
//#region 1. 直近Aの内に投稿されたハッシュタグ(とユーザーのペア)を集計
|
//#region 1. 直近Aの内に投稿されたハッシュタグ(とユーザーのペア)を集計
|
||||||
const data = await Note.aggregate([{
|
const data = await Note.aggregate([{
|
||||||
|
Loading…
Reference in New Issue
Block a user