1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-05 08:07:33 +02:00

[HeiseBridge] removes language-info-text, add archive.is link for people without subscription (#4594)

* [HeiseBridge] removes language-info-text, add archive.is link for people without subscription

* fix annoying phpcs
This commit is contained in:
Tone
2025-08-03 23:50:54 +02:00
committed by GitHub
parent 5ab938ada7
commit bfa6c4c080

View File

@@ -138,6 +138,7 @@ class HeiseBridge extends FeedExpander
}
// abort on heise+ articles
if ($sessioncookie == '' && str_starts_with($item['title'], 'heise+ |')) {
$item['uri'] = 'https://archive.is/' . $item['uri'];
return $item;
}
@@ -162,7 +163,7 @@ class HeiseBridge extends FeedExpander
// remove unwanted stuff
foreach (
$article->find('figure.branding, figure.a-inline-image, a-ad, div.ho-text, a-img,
.a-toc__list, a-collapse, .opt-in__description, .opt-in__footnote') as $element
.a-toc__list, a-collapse, .opt-in__description, .opt-in__footnote, .notice-banner__text, .notice-banner__link') as $element
) {
$element->remove();
}