0
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-07-01 11:02:56 +00:00
This commit is contained in:
Tone 2025-06-15 12:42:34 +00:00 committed by GitHub
commit 132f3d7f6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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