mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 01:02:30 +01:00
Allow more chapter names to appear in suggestions
This commit is contained in:
parent
8d1025e17d
commit
39fcdb1d95
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ export async function getChapterNames(req: Request, res: Response): Promise<Resp
|
|||
const descriptions = await db.prepare("all", `
|
||||
SELECT "description"
|
||||
FROM "sponsorTimes"
|
||||
WHERE ("locked" = 1 OR "votes" > 0 OR ("views" > 25 AND "votes" >= 0)) AND "videoID" IN (
|
||||
WHERE ("locked" = 1 OR "votes" >= 0) AND "videoID" IN (
|
||||
SELECT "videoID"
|
||||
FROM "videoInfo"
|
||||
WHERE "channelID" = ?
|
||||
|
|
Loading…
Reference in a new issue