Actually use the videoID regex

This commit is contained in:
Adam Novak 2022-10-30 13:23:03 -04:00
parent bfc215e492
commit 29d1d12dab
1 changed files with 3 additions and 2 deletions

View File

@ -77,8 +77,9 @@ pub async fn skip_segments_by_id(
db: Db,
) -> content::RawJson<String> {
if videoID.is_empty() {
return content::RawJson("videoID is missing".to_string());
// Check if ID matches ID regex
if !ID_RE.is_match(&videoID) {
return content::RawJson("videoID does not match format requirements".to_string());
}
let sponsors = find_skip_segments(VideoName::ByID(videoID.clone()), categories, db).await;