This commit is contained in:
syuilo
2018-04-18 14:09:55 +09:00
parent 3519cb208e
commit 233e1eeeb2
3 changed files with 10 additions and 3 deletions

View File

@@ -1,3 +1,4 @@
import * as mongo from 'mongodb';
import Note from '../../../models/note';
import { IRemoteUser } from '../../../models/user';
import { ILike } from '../type';
@@ -9,7 +10,7 @@ export default async (actor: IRemoteUser, activity: ILike) => {
// Transform:
// https://misskey.ex/notes/xxxx to
// xxxx
const noteId = id.split('/').pop();
const noteId = new mongo.ObjectID(id.split('/').pop());
const note = await Note.findOne({ _id: noteId });
if (note === null) {