mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-03-14 20:21:14 +03:00
[DonnonsBridge] Fix linting error (#2524)
This commit is contained in:
parent
b1c36da14e
commit
2bba89d0f5
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ class DonnonsBridge extends BridgeAbstract {
|
|||
// 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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue