diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-10-08 18:47:27 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-10-08 18:47:27 +0200 |
commit | c0f373528c55fc11d3ef592b3b1f7207306852c0 (patch) | |
tree | 822f0e717d167043887be058a56540f47d9ab4e2 /pyload/api/DownloadPreparingApi.py | |
parent | gzip compression for api (diff) | |
download | pyload-c0f373528c55fc11d3ef592b3b1f7207306852c0.tar.xz |
adapter simplecrypter plugin
Diffstat (limited to 'pyload/api/DownloadPreparingApi.py')
-rw-r--r-- | pyload/api/DownloadPreparingApi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/api/DownloadPreparingApi.py b/pyload/api/DownloadPreparingApi.py index 131f73b1d..a7e32c4eb 100644 --- a/pyload/api/DownloadPreparingApi.py +++ b/pyload/api/DownloadPreparingApi.py @@ -44,9 +44,9 @@ class DownloadPreparingApi(ApiComponent): #: TODO: withhold crypter, derypt or add later # initial result does not contain the crypter links - tmp = [(url, LinkStatus(url, url, -1, DS.Queued, pluginname)) for url, pluginname in hoster + crypter] + tmp = [(url, LinkStatus(url, url, -1, DS.Queued, pluginname)) for url, pluginname in hoster] data = parseNames(tmp) - rid = self.core.threadManager.createResultThread(self.primaryUID, data) + rid = self.core.threadManager.createResultThread(self.primaryUID, hoster + crypter) return OnlineCheck(rid, data) |