Merge pull request #37 from OfficialNoob/patch-5

getYouTubeVideoID Better ID Parser
This commit is contained in:
Ajay Ramachandran 2019-07-27 17:30:01 -04:00 committed by GitHub
commit b0090a3334
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -676,5 +676,6 @@ function sendRequestToCustomServer(type, fullAddress, callback) {
function getYouTubeVideoID(url) { // Returns with video id else returns false
var regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#\&\?]*).*/;
var match = url.match(regExp);
return (match && match[7].length == 11) ? match[7] : false;
var id = new URL(url).searchParams.get("v");
return (match && match[7].length == 11) ? id : false;
}