fix(youtube): Incomplete URL substring sanitization

This commit is contained in:
tzhangchi
2022-08-17 10:18:02 +08:00
parent 8864593882
commit a17ec1c5f9
@@ -19,7 +19,9 @@ export class YoutubeBlock extends BaseView {
const tag_name = el.tagName;
if (tag_name === 'A' && el.parentElement?.childElementCount === 1) {
const href = el.getAttribute('href');
if (href.indexOf('.youtube.com') !== -1) {
const allowedHosts = ['.youtube.com'];
if (allowedHosts.includes(href)) {
return [
{
type: this.type,