From 344e680fe36f05a288c8ca372c2a26658d6ec382 Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Wed, 9 Jun 2021 15:14:31 -0400 Subject: [PATCH] Fix rejections not being seperated --- src/routes/voteOnSponsorTime.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/voteOnSponsorTime.ts b/src/routes/voteOnSponsorTime.ts index 36e23a0..0aec481 100644 --- a/src/routes/voteOnSponsorTime.ts +++ b/src/routes/voteOnSponsorTime.ts @@ -298,7 +298,7 @@ export async function voteOnSponsorTime(req: Request, res: Response) { if (await isSegmentLocked() || await isVideoLocked()) { finalResponse.blockVote = true; - finalResponse.webhookType = VoteWebhookType.Normal + finalResponse.webhookType = VoteWebhookType.Rejected finalResponse.webhookMessage = "Vote rejected: A moderator has decided that this segment is correct" } }