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