diff options
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/Plugin.py | 3 | ||||
-rw-r--r-- | module/plugins/hoster/BasePlugin.py | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py index 04df13978..1568b0917 100644 --- a/module/plugins/Plugin.py +++ b/module/plugins/Plugin.py @@ -105,7 +105,8 @@ class Plugin(object): self.pyfile = pyfile self.thread = None # holds thread in future - self.lastDownload = "" #location where the last call to download was saved + self.lastDownload = "" # location where the last call to download was saved + self.js = self.core.js # js engine self.setup() diff --git a/module/plugins/hoster/BasePlugin.py b/module/plugins/hoster/BasePlugin.py index 09545d493..4701f82ca 100644 --- a/module/plugins/hoster/BasePlugin.py +++ b/module/plugins/hoster/BasePlugin.py @@ -16,9 +16,9 @@ class BasePlugin(Hoster): def process(self, pyfile): """main function""" - if pyfile.url.startswith("http://"): + if pyfile.url.startswith("http"): - pyfile.name = re.findall("([^\/=]+)", pyfile.url)[-1] + pyfile.name = re.findall("([^/=]+)", pyfile.url)[-1] self.download(pyfile.url) else: |