diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-12 18:54:36 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-12 18:54:36 +0900 |
| commit | 8bc47baf4f47d29afb1c25e2ec3807384d06f812 (patch) | |
| tree | 1fbff758d9a87be0a461258cddce1e5b591ee1d7 /src/models | |
| parent | Fix bug (diff) | |
| download | sharkey-8bc47baf4f47d29afb1c25e2ec3807384d06f812.tar.gz sharkey-8bc47baf4f47d29afb1c25e2ec3807384d06f812.tar.bz2 sharkey-8bc47baf4f47d29afb1c25e2ec3807384d06f812.zip | |
#1710
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/note.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/note.ts b/src/models/note.ts index 359d953735..3bbfec0103 100644 --- a/src/models/note.ts +++ b/src/models/note.ts @@ -289,7 +289,7 @@ export const pack = async ( // Poll if (meId && _note.poll && !hide) { - _note.poll = (async (poll) => { + _note.poll = (async poll => { const vote = await PollVote .findOne({ userId: meId, |