Fix server build
This commit is contained in:
parent
f11bc56602
commit
67c604ae69
1 changed files with 5 additions and 2 deletions
|
@ -37,8 +37,11 @@ const oembedValidator = [
|
||||||
.end()
|
.end()
|
||||||
}
|
}
|
||||||
|
|
||||||
const startIsOk = req.query.url.startsWith(urlShouldStartWith)
|
const url = req.query.url as string
|
||||||
const matches = videoWatchRegex.exec(req.query.url)
|
|
||||||
|
const startIsOk = url.startsWith(urlShouldStartWith)
|
||||||
|
const matches = videoWatchRegex.exec(url)
|
||||||
|
|
||||||
if (startIsOk === false || matches === null) {
|
if (startIsOk === false || matches === null) {
|
||||||
return res.status(400)
|
return res.status(400)
|
||||||
.json({ error: 'Invalid url.' })
|
.json({ error: 'Invalid url.' })
|
||||||
|
|
Loading…
Reference in a new issue