From 1af7ad8e48ae3734848b772132bae0f072bf4394 Mon Sep 17 00:00:00 2001 From: Jeix Date: Sun, 16 Jan 2011 13:14:15 +0100 Subject: netfolder, hotfile fix, filesonic/sharingmatrix beta --- module/plugins/crypter/NetfolderIn.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'module/plugins/crypter') 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 -- cgit v1.2.3