summaryrefslogtreecommitdiffstats
path: root/module/network
diff options
context:
space:
mode:
Diffstat (limited to 'module/network')
-rw-r--r--module/network/Browser.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/module/network/Browser.py b/module/network/Browser.py
index 9585eb7cc..6cc907491 100644
--- a/module/network/Browser.py
+++ b/module/network/Browser.py
@@ -76,6 +76,7 @@ class Browser(object):
def httpDownload(self, url, filename, get={}, post={}, ref=True, cookies=True, chunks=1, resume=False, progressNotify=None):
""" this can also download ftp """
+ self._size = 0
self.dl = HTTPDownload(url, filename, get, post, self.lastEffectiveURL if ref else None,
self.cj if cookies else None, self.bucket, self.interface,
self.proxies, progressNotify)