mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-02-18 08:09:56 +03:00
[HeiseBridge.php] Prevent Youtube videos from being filtered out (#4125)
This commit is contained in:
parent
36706a3dec
commit
87fa6ea71e
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ class HeiseBridge extends FeedExpander
|
||||||
$content = $article->find('.article-content', 0);
|
$content = $article->find('.article-content', 0);
|
||||||
if ($content) {
|
if ($content) {
|
||||||
$contentElements = $content->find(
|
$contentElements = $content->find(
|
||||||
'p, h3, ul, ol, table, pre, noscript img, a-bilderstrecke h2, a-bilderstrecke figure, a-bilderstrecke figcaption'
|
'p, h3, ul, ol, table, pre, noscript img, a-bilderstrecke h2, a-bilderstrecke figure, a-bilderstrecke figcaption, noscript iframe'
|
||||||
);
|
);
|
||||||
$item['content'] .= implode('', $contentElements);
|
$item['content'] .= implode('', $contentElements);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue