mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
Remove extra log
This commit is contained in:
parent
356974b478
commit
2388dea859
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ export async function getLockCategories(req: Request, res: Response): Promise<Re
|
|||
//invalid request
|
||||
return res.sendStatus(400);
|
||||
}
|
||||
console.log(service);
|
||||
|
||||
try {
|
||||
// Get existing lock categories markers
|
||||
const row = await db.prepare("all", 'SELECT "category", "reason" from "lockCategories" where "videoID" = ? AND "service" = ?', [videoID, service]) as {category: Category, reason: string}[];
|
||||
|
|
Loading…
Reference in a new issue