summaryrefslogtreecommitdiffstats
path: root/module/network/Request.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/network/Request.py')
-rwxr-xr-xmodule/network/Request.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/network/Request.py b/module/network/Request.py
index 3c669e77a..5e3503bb3 100755
--- a/module/network/Request.py
+++ b/module/network/Request.py
@@ -461,7 +461,7 @@ class Request:
def progress(self, dl_t, dl_d, up_t, up_d):
if self.abort:
return False
- self.dl_arrived = self.offset+int(dl_d)
+ self.dl_arrived = int(dl_d)
self.dl_size = int(dl_t)
def get_free_name(self, file_name):