From bdd63224c2d3760a0ded8be2b354abc139a1e858 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Fri, 3 Jun 2011 00:29:40 +0200 Subject: wupload fix --- module/plugins/hoster/FilesonicCom.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'module/plugins/hoster/FilesonicCom.py') diff --git a/module/plugins/hoster/FilesonicCom.py b/module/plugins/hoster/FilesonicCom.py index cbe74f214..ba6c4c963 100644 --- a/module/plugins/hoster/FilesonicCom.py +++ b/module/plugins/hoster/FilesonicCom.py @@ -121,7 +121,13 @@ class FilesonicCom(Hoster): def downloadPremium(self): self.logDebug("Premium download") - self.download(self.pyfile.url) + + 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)) + + result = json_loads(self.load(api)) + dl = result["FSApi_Link"]["getDownloadLink"]["response"]["links"][0]["url"] + self.download(dl) def downloadFree(self): self.logDebug("Free download") -- cgit v1.2.3