From 82752a818ce948de7cdf62482f0fedb68382fedf Mon Sep 17 00:00:00 2001 From: Intel1 <25161862+Intel11@users.noreply.github.com> Date: Mon, 26 Feb 2018 15:40:08 -0500 Subject: [PATCH] streamcherry: fix --- plugin.video.alfa/servers/streamcherry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.video.alfa/servers/streamcherry.py b/plugin.video.alfa/servers/streamcherry.py index 5aa5f7e0..a0fea5ec 100644 --- a/plugin.video.alfa/servers/streamcherry.py +++ b/plugin.video.alfa/servers/streamcherry.py @@ -32,7 +32,7 @@ def get_video_url(page_url, premium=False, user="", password="", video_password= for ext, encoded, code, quality in matches: media_url = decode(encoded, int(code)) - + media_url = media_url.replace("@","") if not media_url.startswith("http"): media_url = "http:" + media_url video_urls.append([".%s %sp [streamcherry]" % (ext, quality), media_url])