diff options
Diffstat (limited to 'module/plugins/internal/SimpleCrypter.py')
-rw-r--r-- | module/plugins/internal/SimpleCrypter.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py index f5cfa289d..308ba2966 100644 --- a/module/plugins/internal/SimpleCrypter.py +++ b/module/plugins/internal/SimpleCrypter.py @@ -57,8 +57,8 @@ class SimpleCrypter(Crypter, SimpleHoster): account = self.pyload.accountManager.getAccountPlugin(account_name) if account and account.can_use(): - self.user, data = account.select_account() - self.req = account.get_account_request(self.user) + self.user, data = account.select() + self.req = account.get_request(self.user) self.premium = account.is_premium(self.user) self.account = account |