diff options
author | Official Noob <[email protected]> | 2019-07-30 18:59:06 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-07-30 18:59:06 +0100 |
commit | 53f611a43abd5ef5182943a1b71f47c6432f9b6a (patch) | |
tree | 33885f5e0271ff0c1e60d310468e1531d08037e1 | |
parent | da207095128078457f1805475c4511b8f3c4232b (diff) | |
download | SponsorBlock-53f611a43abd5ef5182943a1b71f47c6432f9b6a.tar.gz SponsorBlock-53f611a43abd5ef5182943a1b71f47c6432f9b6a.zip |
Old function in-use
-rw-r--r-- | popup.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -919,8 +919,9 @@ function sendRequestToServer(type, address, callback) { xmlhttp.send(); } -function getYouTubeVideoID(url) { // Return video id or false +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; } |