summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--module/plugins/hoster/HotfileCom.py7
-rw-r--r--module/web/templates/default/base.html5
2 files changed, 5 insertions, 7 deletions
diff --git a/module/plugins/hoster/HotfileCom.py b/module/plugins/hoster/HotfileCom.py
index 1b8fc0e7b..75806fe4e 100644
--- a/module/plugins/hoster/HotfileCom.py
+++ b/module/plugins/hoster/HotfileCom.py
@@ -81,7 +81,8 @@ class HotfileCom(Hoster):
self.freeDownload()
else:
dl = self.account.apiCall("getdirectdownloadlink", {"link":self.pyfile.url}, self.user)
- dl = unquote(dl).strip()
+ #dl = unquote(dl).strip() <- Made problems
+ dl = dl.strip()
self.download(dl)
def downloadHTML(self):
@@ -118,9 +119,7 @@ class HotfileCom(Hoster):
matches = free_limit_pattern.findall(self.html[0])
if matches:
for match in matches:
- if int(match) == 60000:
- continue
- if int(match) == 0:
+ if int(match) in (60000,15000,0):
continue
else:
waittime = int(match)/1000 + 65
diff --git a/module/web/templates/default/base.html b/module/web/templates/default/base.html
index 94fcd4291..d90ef6f07 100644
--- a/module/web/templates/default/base.html
+++ b/module/web/templates/default/base.html
@@ -304,9 +304,8 @@ function AddBox()
<hr style="clear: both;" />
-<div id="foot">{% trans "© 2008-2011 the pyLoad Team" %}
-
- <a href="#top" class="action top" accesskey="x"><span>{% trans "Back to top" %}</span></a><br />
+<div id="foot">&copy; 2008-2011 pyLoad Team
+<a href="#top" class="action top" accesskey="x"><span>{% trans "Back to top" %}</span></a><br />
<!--<div class="breadcrumbs"></div>-->