1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-02 07:25:49 +02:00
This commit is contained in:
syuilo
2019-04-13 18:17:27 +09:00
parent d46eca4c87
commit 275e1c8de9

View File

@@ -8,7 +8,7 @@ import { genId } from '../../../misc/gen-id';
import { createNotification } from '../../create-notification';
export default async function(user: User, note: Note, choice: number) {
const poll = await Polls.findOne({ noteId: note.id });
const poll = await Polls.findOne(note.id);
if (poll == null) throw 'poll not found';