0
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-06-30 18:42:55 +00:00

URI was not set because of the typo

This commit is contained in:
Anton Smirnov 2025-05-29 19:24:47 +03:00
parent 976217111c
commit ec26c47379

View File

@ -60,7 +60,7 @@ class EpicGamesFreeBridge extends BridgeAbstract
'enclosures' => array_map(fn($item) => $item['url'], $element['keyImages']),
'timestamp' => strtotime($element['promotions']['promotionalOffers'][0]['promotionalOffers'][0]['startDate']),
'title' => $element['title'],
'url' => parent::getURI() . $this->getInput('locale') . '/p/' . $element['urlSlug'],
'uri' => parent::getURI() . $this->getInput('locale') . '/p/' . $element['productSlug'],
];
$this->items[] = $item;
}