mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-31 13:50:23 +02:00
fix: various bug fixes (#3102)
* fix: Undefined offset: 4 * fix: Trying to access array offset on value of type bool * fix: Undefined variable: photo at bridges/TelegramBridge.php line 287 * fix: Trying to get property innertext of non-object at bridges/ZDNetBridge.php line 186 * fix: Undefined index: Category at bridges/UnraidCommunityApplicationsBridge.php line 42 * fix: Undefined index: fullUrl at bridges/EuronewsBridge.php line 61
This commit is contained in:
@@ -58,7 +58,7 @@ class EuronewsBridge extends BridgeAbstract
|
||||
$data = json_decode($json, true);
|
||||
|
||||
foreach ($data as $datum) {
|
||||
$datum_uri = $root_url . $datum['fullUrl'];
|
||||
$datum_uri = $root_url . $datum['path'];
|
||||
$url_datum = $this->getItemContent($datum_uri);
|
||||
$categories = [];
|
||||
if (array_key_exists('program', $datum)) {
|
||||
|
Reference in New Issue
Block a user