summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r--module/plugins/crypter/LinkCryptWs.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/module/plugins/crypter/LinkCryptWs.py b/module/plugins/crypter/LinkCryptWs.py
index d3e75aad4..5c65e726d 100644
--- a/module/plugins/crypter/LinkCryptWs.py
+++ b/module/plugins/crypter/LinkCryptWs.py
@@ -91,7 +91,7 @@ class LinkCryptWs(Crypter):
def isOnline(self):
if "<title>Linkcrypt.ws // Error 404</title>" in self.html:
- self.logDebug("folder doesen't exist anymore")
+ self.logDebug("Folder doesn't exist anymore")
return False
else:
return True
@@ -197,8 +197,6 @@ class LinkCryptWs(Crypter):
for idx, weblink_id in enumerate(ids):
try:
- self.logDebug("Decrypting Web link %d, %s" % (idx + 1, weblink_id))
-
res = self.load("http://linkcrypt.ws/out.html", post = {'file':weblink_id})
indexs = res.find("window.location =") + 19
@@ -206,8 +204,6 @@ class LinkCryptWs(Crypter):
link2 = res[indexs:indexe]
- self.logDebug(link2)
-
link2 = html_unescape(link2)
package_links.append(link2)