1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-22 16:13:35 +02:00

fix(jornaln): Array to string conversion at lib/BridgeAbstract.php li… (#3523)

* fix(jornaln): Array to string conversion at lib/BridgeAbstract.php line 320

* yup
This commit is contained in:
Dag
2023-07-11 16:54:59 +02:00
committed by GitHub
parent c9a861e259
commit 6c0e186d3f
2 changed files with 6 additions and 4 deletions

View File

@@ -52,7 +52,10 @@ class JornalNBridge extends BridgeAbstract
public function getName()
{
return !is_null($this->getKey('feed')) ? self::NAME . ' | ' . $this->getKey('feed') : self::NAME;
if ($this->getKey('feed')) {
return self::NAME . ' | ' . $this->getKey('feed');
}
return self::NAME;
}
public function getURI()