also fix URLs containing dashes

This commit is contained in:
Tomáš Mládek 2022-07-04 12:24:28 +02:00
parent 0887a5fb08
commit b331e23214

View file

@ -19,7 +19,7 @@
let audioPlayer; let audioPlayer;
function extract(url) { function extract(url) {
const match = url.match(/(youtu\.be\/|v=)([\w]+)/); const match = url.match(/(youtu\.be\/|v=)([\w-]+)/);
if (match) { if (match) {
return match[2]; return match[2];
} else { } else {