mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-18 13:21:29 +00:00
Try to use larger GoComics image
This commit is contained in:
committed by
Andrew Dolgov
parent
fde0b96f6d
commit
726eccd93d
@@ -30,6 +30,18 @@ class Af_GoComics extends Plugin {
|
|||||||
|
|
||||||
$matches = array();
|
$matches = array();
|
||||||
|
|
||||||
|
foreach ($entries as $entry) {
|
||||||
|
|
||||||
|
if (preg_match("/(http:\/\/assets.amuniversal.com\/.*width.*)/i", $entry->getAttribute("src"), $matches)) {
|
||||||
|
|
||||||
|
$entry->setAttribute("src", $matches[0]);
|
||||||
|
$basenode = $entry;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$basenode) {
|
||||||
|
// fallback on the smaller version
|
||||||
foreach ($entries as $entry) {
|
foreach ($entries as $entry) {
|
||||||
|
|
||||||
if (preg_match("/(http:\/\/assets.amuniversal.com\/.*)/i", $entry->getAttribute("src"), $matches)) {
|
if (preg_match("/(http:\/\/assets.amuniversal.com\/.*)/i", $entry->getAttribute("src"), $matches)) {
|
||||||
@@ -38,6 +50,7 @@ class Af_GoComics extends Plugin {
|
|||||||
$basenode = $entry;
|
$basenode = $entry;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($basenode) {
|
if ($basenode) {
|
||||||
|
|||||||
Reference in New Issue
Block a user