diff --git a/src/calibre/srv/http_response.py b/src/calibre/srv/http_response.py index 76e2a88b7b..524222a121 100644 --- a/src/calibre/srv/http_response.py +++ b/src/calibre/srv/http_response.py @@ -343,7 +343,6 @@ class HTTPConnection(HTTPRequest): raise IOError('sendfile() failed to write any bytes to the socket') else: sent = self.send(buf.read(min(limit, self.send_bufsize))) - self.last_activity = monotonic() buf.seek(pos + sent) return buf.tell() == end