also fix URLs containing dashes
This commit is contained in:
parent
0887a5fb08
commit
b331e23214
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@
|
|||
let audioPlayer;
|
||||
|
||||
function extract(url) {
|
||||
const match = url.match(/(youtu\.be\/|v=)([\w]+)/);
|
||||
const match = url.match(/(youtu\.be\/|v=)([\w-]+)/);
|
||||
if (match) {
|
||||
return match[2];
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue