diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-15 18:04:47 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-21 07:20:21 +0100 |
commit | e8246525f3106c152d6d1436c6a3111e0334520f (patch) | |
tree | 3797fb96c27d44eafb5ee691c15d73c8b20ab7bc /module/plugins/hoster/DepositfilesCom.py | |
parent | [SimpleHoster] CONTENT_DISPOSITION feature (diff) | |
download | pyload-e8246525f3106c152d6d1436c6a3111e0334520f.tar.xz |
Fix cookie domain
Diffstat (limited to 'module/plugins/hoster/DepositfilesCom.py')
-rw-r--r-- | module/plugins/hoster/DepositfilesCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/DepositfilesCom.py b/module/plugins/hoster/DepositfilesCom.py index 2f6c30158..d414e7021 100644 --- a/module/plugins/hoster/DepositfilesCom.py +++ b/module/plugins/hoster/DepositfilesCom.py @@ -30,7 +30,7 @@ class DepositfilesCom(SimpleHoster): (r'.*<b title="(?P<N>[^"]+).*', "\g<N>")] URL_REPLACEMENTS = [(__pattern__, "https://dfiles.eu/files/\g<ID>")] - COOKIES = [(".dfiles.eu", "lang_current", "en")] + COOKIES = [("dfiles.eu", "lang_current", "en")] FREE_LINK_PATTERN = r'<form id="downloader_file_form" action="(http://.+?\.(dfiles\.eu|depositfiles\.com)/.+?)" method="post"' PREMIUM_LINK_PATTERN = r'class="repeat"><a href="(.+?)"' |