diff options
author | 2015-10-08 03:08:17 +0200 | |
---|---|---|
committer | 2015-10-08 03:08:17 +0200 | |
commit | 035d8c554c9e24206f9dc6f76e17fbe9e4c3607f (patch) | |
tree | 3b173d98512f33233d4aeb2906493d3abeea2369 /module/plugins/hoster/OneFichierCom.py | |
parent | Merge pull request #1957 from GammaC0de/patch-3 (diff) | |
download | pyload-035d8c554c9e24206f9dc6f76e17fbe9e4c3607f.tar.xz |
Fixpack (4)
Diffstat (limited to 'module/plugins/hoster/OneFichierCom.py')
-rw-r--r-- | module/plugins/hoster/OneFichierCom.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/hoster/OneFichierCom.py b/module/plugins/hoster/OneFichierCom.py index f525e5b33..e7f2602a0 100644 --- a/module/plugins/hoster/OneFichierCom.py +++ b/module/plugins/hoster/OneFichierCom.py @@ -9,7 +9,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class OneFichierCom(SimpleHoster): __name__ = "OneFichierCom" __type__ = "hoster" - __version__ = "0.90" + __version__ = "0.91" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?(?:(?P<ID1>\w+)\.)?(?P<HOST>1fichier\.com|alterupload\.com|cjoint\.net|d(es)?fichiers\.com|dl4free\.com|megadl\.fr|mesfichiers\.org|piecejointe\.net|pjointe\.com|tenvoi\.com)(?:/\?(?P<ID2>\w+))?' @@ -27,8 +27,9 @@ class OneFichierCom(SimpleHoster): ("Ludovic Lehmann", "ludo.lehmann@gmail.com")] - COOKIES = [("1fichier.com", "LG", "en")] + URL_REPLACEMENTS = [("https:", "http:")] #@TODO: Remove in 0.4.10 + COOKIES = [("1fichier.com", "LG", "en")] DIRECT_LINK = True NAME_PATTERN = r'>File\s*Name :</td>\s*<td.*>(?P<N>.+?)<' |