Closed NickBlow closed 3 years ago
The generated Regex for the url is https:\/\/(.*).youtube.com\/playlist?list=(.*). Unfortunately, it needs to match the ? character literally as this is a regex reserved character.
https:\/\/(.*).youtube.com\/playlist?list=(.*)
?
https://github.com/ndaidong/oembed-parser/pull/98/files should fix this issue
@NickBlow I've merged your pr and published v1.4.9 Please check if your issue has been resolved.
Resolved
The generated Regex for the url is
https:\/\/(.*).youtube.com\/playlist?list=(.*)
. Unfortunately, it needs to match the?
character literally as this is a regex reserved character.