diff options
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/FilesonicCom.py | 8 |
1 files changed, 7 insertions, 1 deletions
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")
|