aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/livestreamer/plugins/ustreamtv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/livestreamer/plugins/ustreamtv.py b/src/livestreamer/plugins/ustreamtv.py
index e339fe0..35e17f4 100644
--- a/src/livestreamer/plugins/ustreamtv.py
+++ b/src/livestreamer/plugins/ustreamtv.py
@@ -16,7 +16,7 @@ class UStreamTV(Plugin):
def _get_channel_id(self, url):
res = urlget(url)
- match = re.search("channelId=(\d+)", res.text)
+ match = re.search("\"cid\":(\d+)", res.text)
if match:
return int(match.group(1))