Fix linting
This commit is contained in:
parent
83ddd9f15d
commit
5a18512021
@ -117,7 +117,10 @@ app.get("/entries", async (req: Request, res: Response) => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Number.isNaN(voteIndex) && (voteIndex < 0 || voteIndex >= (vote.data()?.options ?? []).length)) {
|
if (
|
||||||
|
!Number.isNaN(voteIndex) &&
|
||||||
|
(voteIndex < 0 || voteIndex >= (vote.data()?.options ?? []).length)
|
||||||
|
) {
|
||||||
res.status(400).json({error: "Invalid vote index"});
|
res.status(400).json({error: "Invalid vote index"});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user