Skip to content

Commit

Permalink
[AO3Bridge] Fix bad heading selector (RSS-Bridge#4045)
Browse files Browse the repository at this point in the history
  • Loading branch information
Phantop authored Mar 31, 2024
1 parent d5d470c commit 7001fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridges/AO3Bridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private function collectList($url)
$html = defaultLinkTo($html, self::URI);

// Get list title. Will include page range + count in some cases
$heading = ($html->find('#main > h2', 0));
$heading = ($html->find('#main h2', 0));
if ($heading->find('a.tag')) {
$heading = $heading->find('a.tag', 0);
}
Expand Down

0 comments on commit 7001fba

Please sign in to comment.