aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/livestreamer/plugins/justintv.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/livestreamer/plugins/justintv.py b/src/livestreamer/plugins/justintv.py
index 776c91c..561c1d0 100644
--- a/src/livestreamer/plugins/justintv.py
+++ b/src/livestreamer/plugins/justintv.py
@@ -18,11 +18,7 @@ class JustinTV(Plugin):
return ("justin.tv" in url) or ("twitch.tv" in url)
def _get_channel_name(self, url):
- data = urlget(url)
- match = re.search(b"live_facebook_embed_player\.swf\?channel=(\w+)", data)
-
- if match:
- return str(match.group(1), "ascii")
+ return url.rstrip("/").rpartition("/")[2]
def _get_metadata(self, channel):
cookie = options.get("jtvcookie")