diff options
Diffstat (limited to 'module/plugins/hoster/FilesonicCom.py')
-rw-r--r-- | module/plugins/hoster/FilesonicCom.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/module/plugins/hoster/FilesonicCom.py b/module/plugins/hoster/FilesonicCom.py index a74bcc1c8..bb5152d29 100644 --- a/module/plugins/hoster/FilesonicCom.py +++ b/module/plugins/hoster/FilesonicCom.py @@ -119,10 +119,9 @@ class FilesonicCom(Hoster): def downloadPremium(self):
self.logDebug("Premium download")
- api = self.API_ADDRESS + "/link?method=getDownloadLink&u=%s&p=%s&ids=%s" % (
- self.user, self.account.getAccountData(self.user)["password"], getId(self.pyfile.url))
+ api = self.API_ADDRESS + "/link?method=getDownloadLink&u=%%s&p=%%s&ids=%s" % getId(self.pyfile.url)
- result = json_loads(self.load(api))
+ result = json_loads(self.load(api % (self.user, self.account.getAccountData(self.user))))
links = result["FSApi_Link"]["getDownloadLink"]["response"]["links"]
#wupload seems to return list and no dicts
|