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/BitshareCom.py | |
parent | [SimpleHoster] CONTENT_DISPOSITION feature (diff) | |
download | pyload-e8246525f3106c152d6d1436c6a3111e0334520f.tar.xz |
Fix cookie domain
Diffstat (limited to 'module/plugins/hoster/BitshareCom.py')
-rw-r--r-- | module/plugins/hoster/BitshareCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/BitshareCom.py b/module/plugins/hoster/BitshareCom.py index 35aff7c1e..da393f8fc 100644 --- a/module/plugins/hoster/BitshareCom.py +++ b/module/plugins/hoster/BitshareCom.py @@ -24,7 +24,7 @@ class BitshareCom(SimpleHoster): INFO_PATTERN = r'Downloading (?P<N>.+) - (?P<S>[\d.,]+) (?P<U>[\w^_]+)</h1>' OFFLINE_PATTERN = r'(>We are sorry, but the requested file was not found in our database|>Error - File not available<|The file was deleted either by the uploader, inactivity or due to copyright claim)' - COOKIES = [(".bitshare.com", "language_selection", "EN")] + COOKIES = [("bitshare.com", "language_selection", "EN")] AJAXID_PATTERN = r'var ajaxdl = "(.*?)";' TRAFFIC_USED_UP = r'Your Traffic is used up for today. Upgrade to premium to continue!' |