mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-12-09 13:07:02 +03:00
removed old functionality comments
This commit is contained in:
@@ -20,10 +20,6 @@ module.exports = async function (req, res) {
|
|||||||
|
|
||||||
// Get all video id's that match hash prefix
|
// Get all video id's that match hash prefix
|
||||||
const videoIds = db.prepare('all', 'SELECT DISTINCT videoId, hashedVideoID from sponsorTimes WHERE hashedVideoID LIKE ?', [hashPrefix+'%']);
|
const videoIds = db.prepare('all', 'SELECT DISTINCT videoId, hashedVideoID from sponsorTimes WHERE hashedVideoID LIKE ?', [hashPrefix+'%']);
|
||||||
/*if (videoIds.length === 0) {
|
|
||||||
res.sendStatus(404);
|
|
||||||
return;
|
|
||||||
}*/
|
|
||||||
|
|
||||||
let segments = videoIds.map((video) => {
|
let segments = videoIds.map((video) => {
|
||||||
return {
|
return {
|
||||||
|
|||||||
@@ -40,18 +40,6 @@ describe('getSegmentsByHash', () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
/*it('Should be able to get a 404 if no videos', (done) => {
|
|
||||||
request.get(utils.getbaseURL()
|
|
||||||
+ '/api/skipSegments/11111?categories=["shilling"]', null,
|
|
||||||
(err, res, body) => {
|
|
||||||
if (err) done("Couldn't call endpoint");
|
|
||||||
else if (res.statusCode !== 404) done("non 404 status code, was " + res.statusCode);
|
|
||||||
else {
|
|
||||||
done(); // pass
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});*/
|
|
||||||
|
|
||||||
it('Should be able to get an emptry array if no videos', (done) => {
|
it('Should be able to get an emptry array if no videos', (done) => {
|
||||||
request.get(utils.getbaseURL()
|
request.get(utils.getbaseURL()
|
||||||
+ '/api/skipSegments/11111?categories=["shilling"]', null,
|
+ '/api/skipSegments/11111?categories=["shilling"]', null,
|
||||||
@@ -66,7 +54,6 @@ describe('getSegmentsByHash', () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
it('Should return 400 prefix too short', (done) => {
|
it('Should return 400 prefix too short', (done) => {
|
||||||
request.get(utils.getbaseURL()
|
request.get(utils.getbaseURL()
|
||||||
+ '/api/skipSegments/11?categories=["shilling"]', null,
|
+ '/api/skipSegments/11?categories=["shilling"]', null,
|
||||||
|
|||||||
Reference in New Issue
Block a user