diff --git a/bridges/RainbowSixSiegeBridge.php b/bridges/RainbowSixSiegeBridge.php
index 62ea482b..347438b0 100644
--- a/bridges/RainbowSixSiegeBridge.php
+++ b/bridges/RainbowSixSiegeBridge.php
@@ -12,8 +12,8 @@ class RainbowSixSiegeBridge extends BridgeAbstract {
}
public function collectData(){
- $dlUrl = 'https://www.ubisoft.com/api/updates/items?categoriesFilter=all';
- $dlUrl = $dlUrl . '&limit=6&mediaFilter=all&skip=0&startIndex=undefined&locale=en-us';
+ $dlUrl = 'https://www.ubisoft.com/api/updates/items?locale=en-us&categoriesFilter=all';
+ $dlUrl = $dlUrl . '&limit=6&mediaFilter=news&skip=0&startIndex=undefined&tags=BR-rainbow-six%20GA-siege';
$jsonString = getContents($dlUrl) or returnServerError('Error while downloading the website content');
$json = json_decode($jsonString, true);
@@ -29,38 +29,14 @@ class RainbowSixSiegeBridge extends BridgeAbstract {
$thumbnail = '';
$content = $thumbnail . '
' . $jsonItem['content'];
- // Markdown parsing from https://gist.github.com/jbroadway/2836900
-
// Line breaks
$content = preg_replace("/\r\n|\r|\n/", '
', $content);
- // Links
- $regex = '/\[([^\[]+)\]\(([^\)]+)\)/';
- $replacement = '\1';
- $content = preg_replace($regex, $replacement, $content);
-
- // Bold text
- $regex = '/(\*\*|__)(.*?)\1/';
- $replacement = '\2';
- $content = preg_replace($regex, $replacement, $content);
-
- // Lists
- $regex = '/\n\s*[\*|\-](.*)/';
- $content = preg_replace_callback($regex, function($regs) {
- $item = $regs[1];
- return sprintf ('