[Refactor] Fix indentation level
This commit is contained in:
		| @@ -45,8 +45,8 @@ module.exports = (params, user, app) => new Promise(async (res, rej) => { | |||||||
| 				_id: mediaId, | 				_id: mediaId, | ||||||
| 				user_id: user._id | 				user_id: user._id | ||||||
| 			}, { | 			}, { | ||||||
| 					_id: true | 				_id: true | ||||||
| 				}); | 			}); | ||||||
|  |  | ||||||
| 			if (entity === null) { | 			if (entity === null) { | ||||||
| 				return rej('file not found'); | 				return rej('file not found'); | ||||||
| @@ -79,10 +79,10 @@ module.exports = (params, user, app) => new Promise(async (res, rej) => { | |||||||
| 		const latestPost = await Post.findOne({ | 		const latestPost = await Post.findOne({ | ||||||
| 			user_id: user._id | 			user_id: user._id | ||||||
| 		}, { | 		}, { | ||||||
| 				sort: { | 			sort: { | ||||||
| 					_id: -1 | 				_id: -1 | ||||||
| 				} | 			} | ||||||
| 			}); | 		}); | ||||||
|  |  | ||||||
| 		// 直近と同じRepost対象かつ引用じゃなかったらエラー | 		// 直近と同じRepost対象かつ引用じゃなかったらエラー | ||||||
| 		if (latestPost && | 		if (latestPost && | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 syuilo⭐️
					syuilo⭐️