From 7c0bc9afd390a95f94e6a57490b7233b54dcc740 Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Sat, 19 Sep 2020 18:54:49 -0400 Subject: [PATCH] Changed VIP to moderator in no segments error --- src/routes/postSkipSegments.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/postSkipSegments.js b/src/routes/postSkipSegments.js index e083d73..861c0f1 100644 --- a/src/routes/postSkipSegments.js +++ b/src/routes/postSkipSegments.js @@ -296,7 +296,7 @@ module.exports = async function postSkipSegments(req, res) { logger.warn("Caught a no-segment submission. userID: '" + userID + "', videoID: '" + videoID + "', category: '" + segments[i].category + "'"); res.status(403).send( "Request rejected by auto moderator: New submissions are not allowed for the following category: '" - + segments[i].category + "'. A VIP has decided that no new segments are needed and that all current segments of this category are timed perfectly. " + + segments[i].category + "'. A moderator has decided that no new segments are needed and that all current segments of this category are timed perfectly. " + "If you believe this is incorrect, please contact someone on Discord." ); return;