Skip to content
This repository has been archived by the owner on Aug 27, 2022. It is now read-only.

Commit

Permalink
[DonnonsBridge] Fix linting error (RSS-Bridge#2524)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bockiii authored and Kwbmm committed Jun 17, 2022
1 parent 690b31d commit fd6aeb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridges/DonnonsBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ private function collectDataByPage($page) {
// Grab info from HTML
$imageSrc = $element->find('img.ima-center', 0)->getAttribute('src');
// Use large image instead of small one
$imageSrc = str_replace("/xs/", "/lg/", $imageSrc);
$imageSrc = str_replace('/xs/', '/lg/', $imageSrc);
$image = self::URI . $imageSrc;
$author = $element->find('div.avatar-holder', 0)->plaintext;

Expand Down

0 comments on commit fd6aeb8

Please sign in to comment.