From a2deeed597dea15d9b7ca237be71988469f58cdd Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Fri, 30 Sep 2016 10:59:41 -0400 Subject: [PATCH] Fixed the YouTube link regex referencing removed capture groups (#4129) --- webapp/components/youtube_video.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/components/youtube_video.jsx b/webapp/components/youtube_video.jsx index d551364f38..93ea4f9466 100644 --- a/webapp/components/youtube_video.jsx +++ b/webapp/components/youtube_video.jsx @@ -42,7 +42,7 @@ export default class YoutubeVideo extends React.Component { const link = props.link; const match = link.trim().match(ytRegex); - if (!match || match[2].length !== 11) { + if (!match || match[1].length !== 11) { return; } @@ -51,7 +51,7 @@ export default class YoutubeVideo extends React.Component { } this.setState({ - videoId: match[2], + videoId: match[1], time: this.handleYoutubeTime(link) }); }