diff options
author | Jeix <devnull@localhost> | 2011-01-16 13:14:15 +0100 |
---|---|---|
committer | Jeix <devnull@localhost> | 2011-01-16 13:14:15 +0100 |
commit | 1af7ad8e48ae3734848b772132bae0f072bf4394 (patch) | |
tree | ae2c78b03f35aa98c1f6c9ec10ff59a67b8575bd /module/plugins/crypter/NetfolderIn.py | |
parent | mssing bracets (diff) | |
download | pyload-1af7ad8e48ae3734848b772132bae0f072bf4394.tar.xz |
netfolder, hotfile fix, filesonic/sharingmatrix beta
Diffstat (limited to 'module/plugins/crypter/NetfolderIn.py')
-rw-r--r-- | module/plugins/crypter/NetfolderIn.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/module/plugins/crypter/NetfolderIn.py b/module/plugins/crypter/NetfolderIn.py index 510f09396..99b39b335 100644 --- a/module/plugins/crypter/NetfolderIn.py +++ b/module/plugins/crypter/NetfolderIn.py @@ -80,7 +80,8 @@ class NetfolderIn(Crypter): def getLinks(self): - links = re.findall('href="(http://(?:www\.)?netload\.in/(?:datei|index.php\?.*?file_id=)\w+)', self.html) - links = [x[0] for x in links] + links = re.search(r'name="list" value="(.*?)"', self.html).group(1).split(",") + #links = re.findall(r'href="(http://(?:www\.)?netload\.in/(?:datei\w+/.*?|index.php\?.*?file_id=\w+))"', self.html) + #links = [x[0] for x in links] self.log.debug("NetfolderIn: Package has %d links" % len(links)) - return links
\ No newline at end of file + return links |