From a1d702007e16fb80294252e249d9e4e65ca906cd Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sun, 4 Dec 2011 14:05:50 +0100 Subject: little fix --- module/plugins/hoster/FilesonicCom.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'module/plugins/hoster/FilesonicCom.py') 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 -- cgit v1.2.3