diff options
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/hoster/ShareonlineBiz.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/hoster/ShareonlineBiz.py b/module/plugins/hoster/ShareonlineBiz.py index 6c188fc96..6e6ee1f3e 100644 --- a/module/plugins/hoster/ShareonlineBiz.py +++ b/module/plugins/hoster/ShareonlineBiz.py @@ -69,7 +69,8 @@ class ShareonlineBiz(Hoster): "error" : re.compile("(Es ist ein unbekannter Fehler aufgetreten|An unknown error has occurred)")}) if check in ("invalid", "error"): self.logError(self.lastCheck.group(1)) - if self.premium: self.account.getAccountInfo(self.user, force = True) + if self.premium: + self.account.getAccountInfo(self.user, True) self.retry(reason=_("Invalid download ticket")) def downloadAPIData(self): |