Fix not getting iframe src

This commit is contained in:
Hongbo Wu 2022-05-11 19:25:12 +08:00
parent 82fb8151a4
commit 2755da16a9

View file

@ -2260,8 +2260,8 @@ Readability.prototype = {
}
// Create instagram posts placeholders from iframes
if (element.src && element.src.includes('instagram.com/p')) {
const url = element.src;
if (element.getAttribute('src')?.includes('instagram.com/p')) {
const url = element.getAttribute('src');
const regex = /https?:\/\/(www\.)?instagram.com\/p\/(\w+)\//gm;
const match = regex.exec(url);