diff options
| author | 2015-02-11 04:38:47 +0100 | |
|---|---|---|
| committer | 2015-02-11 04:38:47 +0100 | |
| commit | fa35d4562005d8c10613017eb6f63adf7ccc7ac5 (patch) | |
| tree | 1cd68a07eeefc7df8f2ac463c02336c713af13ef /module/plugins/hoster | |
| parent | [AndroidPhoneNotify][WindowsPhoneNotify] Don't use storage (diff) | |
| download | pyload-fa35d4562005d8c10613017eb6f63adf7ccc7ac5.tar.xz | |
[FileStoreTo] Fix https://github.com/pyload/pyload/issues/1167
Diffstat (limited to 'module/plugins/hoster')
| -rw-r--r-- | module/plugins/hoster/FileStoreTo.py | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/module/plugins/hoster/FileStoreTo.py b/module/plugins/hoster/FileStoreTo.py index 7b93c03f1..7b03a147d 100644 --- a/module/plugins/hoster/FileStoreTo.py +++ b/module/plugins/hoster/FileStoreTo.py @@ -8,7 +8,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo  class FileStoreTo(SimpleHoster):      __name__    = "FileStoreTo"      __type__    = "hoster" -    __version__ = "0.02" +    __version__ = "0.03"      __pattern__ = r'http://(?:www\.)?filestore\.to/\?d=(?P<ID>\w+)' @@ -18,8 +18,9 @@ class FileStoreTo(SimpleHoster):                         ("stickell", "l.stickell@yahoo.it")] -    INFO_PATTERN = r'File: <span[^>]*>(?P<N>.+)</span><br />Size: (?P<S>[\d.,]+) (?P<U>[\w^_]+)' -    OFFLINE_PATTERN = r'>Download-Datei wurde nicht gefunden<' +    INFO_PATTERN         = r'File: <span[^>]*>(?P<N>.+)</span><br />Size: (?P<S>[\d.,]+) (?P<U>[\w^_]+)' +    OFFLINE_PATTERN      = r'>Download-Datei wurde nicht gefunden<' +    TEMP_OFFLINE_PATTERN = r'>Der Download ist nicht bereit !<'      def setup(self): @@ -29,9 +30,8 @@ class FileStoreTo(SimpleHoster):      def handleFree(self, pyfile):          self.wait(10) -        ldc  = re.search(r'wert="(\w+)"', self.html).group(1) -        link = self.load("http://filestore.to/ajax/download.php", get={"LDC": ldc}) -        self.download(link) +        self.link = self.load("http://filestore.to/ajax/download.php", +                              get={'D': re.search(r'"D=(\w+)', self.html).group(1)})  getInfo = create_getInfo(FileStoreTo)  | 
