Fix bug
This commit is contained in:
		
							parent
							
								
									c985fed3e4
								
							
						
					
					
						commit
						fc31e44fd2
					
				|  | @ -3,7 +3,7 @@ import Meta from '../../../../models/meta'; | |||
| 
 | ||||
| export default () => new Promise(async (res, rej) => { | ||||
| 	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週間
 | ||||
| 
 | ||||
|  |  | |||
|  | @ -19,7 +19,7 @@ const max = 5; | |||
|  */ | ||||
| export default () => new Promise(async (res, rej) => { | ||||
| 	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の内に投稿されたハッシュタグ(とユーザーのペア)を集計
 | ||||
| 	const data = await Note.aggregate([{ | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue