diff options
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py index 2f9f7783b..5c977e8a8 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -782,6 +782,10 @@ class ServerMethods(): p.sync() self.core.files.save() + + def checkURLs(self, urls): + support = self.core.pluginManager.parseUrls(urls) + return [(u, p) if not p == "BasePlugin" else (u, None) for u, p in support] def is_time_download(self): start = self.core.config['downloadTime']['start'].split(":") |