1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 21:54:17 +01:00

urplay: adding support for ur.se

This commit is contained in:
Johan Andersson 2013-03-03 10:59:52 +01:00 committed by Olof Johansson
parent ee375f5d64
commit 78dd84112b

View File

@ -11,7 +11,7 @@ from svtplay.hls import download_hls
class Urplay(): class Urplay():
def handle(self, url): def handle(self, url):
return "urplay.se" in url return ("urplay.se" in url) or ("ur.se" in url)
def get(self, options, url): def get(self, options, url):
data = get_http_data(url) data = get_http_data(url)