From 87dcce5fac2ea76abb4cd9c9edb1aca6e28bce01 Mon Sep 17 00:00:00 2001 From: Andy Gardner Date: Sun, 22 Oct 2017 08:13:45 +0200 Subject: [plugin.video.redbull.tv] v2.0.1 --- plugin.video.redbull.tv/addon.xml | 2 +- plugin.video.redbull.tv/resources/lib/redbulltv_client.py | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/plugin.video.redbull.tv/addon.xml b/plugin.video.redbull.tv/addon.xml index 22ec615..30b5626 100644 --- a/plugin.video.redbull.tv/addon.xml +++ b/plugin.video.redbull.tv/addon.xml @@ -1,5 +1,5 @@ - + diff --git a/plugin.video.redbull.tv/resources/lib/redbulltv_client.py b/plugin.video.redbull.tv/resources/lib/redbulltv_client.py index eb5622c..8124273 100644 --- a/plugin.video.redbull.tv/resources/lib/redbulltv_client.py +++ b/plugin.video.redbull.tv/resources/lib/redbulltv_client.py @@ -2,12 +2,12 @@ import re, urllib2 import utils class RedbullTVClient(object): - REDBULL_API = "https://appletv-v2.redbull.tv/" + REDBULL_API = "https://appletv.redbull.tv/" ROOT_MENU = [ - {"title": "Discover", "url": REDBULL_API + "views/discover", "is_content":False}, - {"title": "TV", "url": REDBULL_API + "views/tv", "is_content":False}, - {"title": "Channels", "url": REDBULL_API + "views/channels", "is_content":False}, - {"title": "Calendar", "url": REDBULL_API + "views/calendar", "is_content":False}, + {"title": "Discover", "url": REDBULL_API + "products/discover", "is_content":False}, + {"title": "TV", "url": REDBULL_API + "products/tv", "is_content":False}, + {"title": "Channels", "url": REDBULL_API + "products/channels", "is_content":False}, + {"title": "Calendar", "url": REDBULL_API + "products/calendar", "is_content":False}, {"title": "Search", "url": REDBULL_API + "search?q=", "is_content":False}, ] @@ -108,3 +108,4 @@ class RedbullTVClient(object): for item in xml_elements: items.append(self.get_element_details(item, url)) return items + \ No newline at end of file -- cgit v1.2.3