diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-28 20:40:00 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-28 20:40:00 +0100 |
commit | 0d27fda4b6edbfcba9b78b2c3f91063b8464455a (patch) | |
tree | 4d094829d9419506868768c90686a11b5b4bae85 /module/plugins/accounts | |
parent | Merge pull request #928 from Gummibaer/patch-1 (diff) | |
download | pyload-0d27fda4b6edbfcba9b78b2c3f91063b8464455a.tar.xz |
[XFSAccount] Fix leech traffic detection
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/EasybytezCom.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/module/plugins/accounts/EasybytezCom.py b/module/plugins/accounts/EasybytezCom.py index ebc77d03b..0afd93d3b 100644 --- a/module/plugins/accounts/EasybytezCom.py +++ b/module/plugins/accounts/EasybytezCom.py @@ -8,7 +8,7 @@ from module.plugins.internal.XFSAccount import XFSAccount class EasybytezCom(XFSAccount): __name__ = "EasybytezCom" __type__ = "account" - __version__ = "0.10" + __version__ = "0.11" __description__ = """EasyBytez.com account plugin""" __license__ = "GPLv3" @@ -17,3 +17,9 @@ class EasybytezCom(XFSAccount): HOSTER_DOMAIN = "easybytez.com" + + + def loadAccountInfo(self, *args, **kwargs): + info = super(EasybytezCom, self).loadAccountInfo(*args, **kwargs) + info['leechtraffic'] = 26214400 + return info |