From aa44768baefc0004b366222620b5473bbeb5bf65 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 18 Oct 2002 00:26:23 +0000 Subject: [PATCH] whoops --- panda/src/downloader/httpChannel.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/downloader/httpChannel.cxx b/panda/src/downloader/httpChannel.cxx index 3ca99c22b9..a9ebf7fe49 100644 --- a/panda/src/downloader/httpChannel.cxx +++ b/panda/src/downloader/httpChannel.cxx @@ -217,11 +217,11 @@ run() { if (_nonblocking && _download_throttle) { double now = ClockObject::get_global_clock()->get_real_time(); double elapsed = now - _last_run_time; - _last_run_time = now; if (elapsed < _seconds_per_update) { // Come back later. return true; } + _last_run_time = now; _bytes_requested += _bytes_per_update; } switch (_download_dest) {