Merge pull request #85 from ajayyy/testing

Make VIP submissions take priority
This commit is contained in:
Ajay Ramachandran
2020-05-16 00:09:57 -04:00
committed by GitHub

View File

@@ -228,7 +228,7 @@ module.exports = async function postSkipSegments(req, res) {
let startingVotes = 0; let startingVotes = 0;
if (vipRow.userCount > 0) { if (vipRow.userCount > 0) {
//this user is a vip, start them at a higher approval rating //this user is a vip, start them at a higher approval rating
startingVotes = 10; startingVotes = 10000;
} }
for (const segmentInfo of segments) { for (const segmentInfo of segments) {