mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-01-10 05:27:27 +03:00
parent
97f7df0d06
commit
f9e9c8101e
1 changed files with 2 additions and 1 deletions
|
@ -56,7 +56,8 @@ class TldrTechBridge extends BridgeAbstract
|
||||||
if ($child->tag != 'a') {
|
if ($child->tag != 'a') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$this->extractItem(Url::fromString(self::URI . $child->href));
|
$itemUrl = Url::fromString(self::URI . ltrim($child->href, '/'));
|
||||||
|
$this->extractItem($itemUrl);
|
||||||
if (count($this->items) >= $limit) {
|
if (count($this->items) >= $limit) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue