summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/LetitbitNetFolder.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/crypter/LetitbitNetFolder.py')
-rw-r--r--module/plugins/crypter/LetitbitNetFolder.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/module/plugins/crypter/LetitbitNetFolder.py b/module/plugins/crypter/LetitbitNetFolder.py
index 6ea27813c..19e780690 100644
--- a/module/plugins/crypter/LetitbitNetFolder.py
+++ b/module/plugins/crypter/LetitbitNetFolder.py
@@ -22,15 +22,11 @@ class LetitbitNetFolder(Crypter):
def decrypt(self, pyfile):
html = self.load(pyfile.url)
- new_links = []
-
folder = re.search(self.FOLDER_PATTERN, html, re.DOTALL)
if not folder:
self.fail("Parse error (FOLDER)")
- new_links.extend(re.findall(self.LINK_PATTERN, folder.group(0)))
+ self.urls.extend(re.findall(self.LINK_PATTERN, folder.group(0)))
- if new_links:
- self.core.files.addLinks(new_links, pyfile.package().id)
- else:
+ if not self.urls:
self.fail('Could not extract any links')