This commit is contained in:
syuilo 2018-05-13 03:16:31 +09:00
parent bc197bc958
commit f47377d181
1 changed files with 8 additions and 7 deletions

View File

@ -394,13 +394,14 @@ export default async (user: IUser, data: {
//#region TODO: これ重い
// 今までで同じ投稿をRenoteしているか
const existRenote = await Note.findOne({
userId: user._id,
renoteId: data.renote._id,
_id: {
$ne: note._id
}
});
//const existRenote = await Note.findOne({
// userId: user._id,
// renoteId: data.renote._id,
// _id: {
// $ne: note._id
// }
//});
const existRenote = null;
//#endregion
if (!existRenote) {