This commit is contained in:
Sebastian K 2025-07-31 20:10:18 +08:00 committed by GitHub
commit c70c898214
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,6 +36,9 @@ class ExplosmBridge extends BridgeAbstract
$html = getSimpleHTMLDOM($url);
$element = $html->find('[class*=ComicImage]', 0);
if(!$element) {
break; // skip, if element was not found
}
$date = $element->find('[class^=Author__Right] p', 0)->plaintext;
$author = str_replace('by ', '', $element->find('[class^=Author__Right] p', 1)->plaintext);
$image = $element->find('img', 0)->src;