mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
Remove print statement
This commit is contained in:
parent
42da1b6c23
commit
15b3cb20b3
1 changed files with 0 additions and 1 deletions
|
@ -12,7 +12,6 @@ import { Logger } from '../utils/logger';
|
||||||
|
|
||||||
export function addUnlistedVideo(req: Request, res: Response) {
|
export function addUnlistedVideo(req: Request, res: Response) {
|
||||||
const videoID = req.body.videoID;
|
const videoID = req.body.videoID;
|
||||||
console.log(req.body)
|
|
||||||
|
|
||||||
if (videoID === undefined || typeof(videoID) !== "string" || videoID.length !== 11) {
|
if (videoID === undefined || typeof(videoID) !== "string" || videoID.length !== 11) {
|
||||||
res.status(400).send("Invalid parameters");
|
res.status(400).send("Invalid parameters");
|
||||||
|
|
Loading…
Reference in a new issue