diff --git a/src/utils/webhookUtils.js b/src/utils/webhookUtils.js index 6da1d62..9b1e0e7 100644 --- a/src/utils/webhookUtils.js +++ b/src/utils/webhookUtils.js @@ -17,10 +17,10 @@ function getVoteAuthorRaw(submissionCount, isVIP, isOwnSubmission) { function getVoteAuthor(submissionCount, isVIP, isOwnSubmission) { if (submissionCount === 0) { return "Report by New User"; - } else if (isVIP) { - return "Report by VIP User"; } else if (isOwnSubmission) { return "Report by Submitter"; + } else if (isVIP) { + return "Report by VIP User"; } return "";