mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-13 03:54:04 +02:00
tweaks (#3686)
This commit is contained in:
@@ -157,9 +157,11 @@ EOD;
|
||||
|
||||
// Add played games list to content
|
||||
$item['content'] .= '<p><b>Played games:</b><ul>';
|
||||
if (count($video->moments->edges) > 0) {
|
||||
foreach ($video->moments->edges as $edge) {
|
||||
$moment = $edge->node;
|
||||
|
||||
$momentEdges = $video->moments->edges ?? [];
|
||||
if (count($momentEdges) > 0) {
|
||||
foreach ($momentEdges as $momentEdge) {
|
||||
$moment = $momentEdge->node;
|
||||
|
||||
$item['categories'][] = $moment->description;
|
||||
$item['content'] .= '<li><a href="'
|
||||
|
Reference in New Issue
Block a user