diff --git a/channels/casacinemaInfo.py b/channels/casacinemaInfo.py index 0f197609..96eb3f07 100644 --- a/channels/casacinemaInfo.py +++ b/channels/casacinemaInfo.py @@ -126,3 +126,6 @@ def newest(categoria): def findvideos(item): support.log('findvideos ->', item) return support.hdpass_get_servers(item) + +def play(item): + return support.hdpass_get_url(item) \ No newline at end of file diff --git a/channels/seriehd.py b/channels/seriehd.py index f973f38d..2ed1a8cc 100644 --- a/channels/seriehd.py +++ b/channels/seriehd.py @@ -143,3 +143,6 @@ def findvideos(item): matches = support.match(url,patron=r'(\d+)<', patronBlock=r'

EPISODIO

').matches if matches: item.url = support.urlparse.urljoin(url, matches[-1][0]) return support.hdpass_get_servers(item) + +def play(item): + return support.hdpass_get_url(item) \ No newline at end of file