aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/livestreamer/plugins/ownedtv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/livestreamer/plugins/ownedtv.py b/src/livestreamer/plugins/ownedtv.py
index 0b89745..747e6e2 100644
--- a/src/livestreamer/plugins/ownedtv.py
+++ b/src/livestreamer/plugins/ownedtv.py
@@ -37,7 +37,7 @@ class OwnedTV(Plugin):
data = fd.read()
fd.close()
- match = re.search(b"own3d.tv\/livestreamfb\/(\d+)", data)
+ match = re.search(b"document.location.hash='/live/(\d+)'", data)
if match:
return int(match.group(1))