Merge pull request #365 from mchangrh/updateDependencies

update dependencies, add shims for node-fetch v3
This commit is contained in:
Ajay Ramachandran
2021-09-26 14:41:56 -04:00
committed by GitHub
6 changed files with 152 additions and 136 deletions

View File

@@ -240,7 +240,7 @@ async function autoModerateSubmission(apiVideoInfo: APIVideoInfo,
&segments=${nbString.substring(0, nbString.length - 1)}`);
if (!response.ok) return false;
const nbPredictions = await response.json();
const nbPredictions = await response.json() as Record<string, any>;
let nbDecision = false;
let predictionIdx = 0; //Keep track because only sponsor categories were submitted
for (let i = 0; i < segments.length; i++) {