From 601f61f0636e681d4f6171f2d9faca8011646a10 Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Sun, 28 May 2017 20:15:59 +0200 Subject: [PATCH] [RTBFBridge] Update URI A series URL still looks like: https://www.rtbf.be/auvio/emissions/detail?id=3553 But an individual episode has been changed from https://www.rtbf.be/auvio/emissions/detail?id=2217881 to https://www.rtbf.be/auvio/detail?id=2217881 --- bridges/RTBFBridge.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bridges/RTBFBridge.php b/bridges/RTBFBridge.php index d8f5c67b..e622a055 100644 --- a/bridges/RTBFBridge.php +++ b/bridges/RTBFBridge.php @@ -1,7 +1,7 @@ getInput('c'))){ - return self::URI . 'detail?id=' . $this->getInput('c'); + return self::URI . 'emissions/detail?id=' . $this->getInput('c'); } - return parent::getURI(); + return parent::getURI() . 'emissions/'; } public function getName(){