Fix broken shadow ban check

This commit is contained in:
Ajay Ramachandran
2020-09-04 12:16:13 -04:00
parent 9ee5c508e4
commit ac80b2322b
2 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ module.exports = async function (req, res) {
return {
videoID: video.videoID,
hash: video.hashedVideoID,
segments: getSegments(video.videoID, categories)
segments: getSegments(req, video.videoID, categories)
};
});