summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugin.video.redbull.tv/addon.xml2
-rw-r--r--plugin.video.redbull.tv/resources/lib/redbulltv_client.py11
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 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<addon id="plugin.video.redbull.tv" name="Red Bull TV" version="2.0.0" provider-name="andy-g">
+<addon id="plugin.video.redbull.tv" name="Red Bull TV" version="2.0.1" provider-name="andy-g">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
</requires>
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