From a519920342010cdbf1063ae35c9046c8015eaa6f Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Sat, 30 May 2020 04:58:02 +0000 Subject: [PATCH] revert r23551: monotonicTime value is already in milliseconds git-svn-id: https://xpra.org/svn/Xpra/trunk@26526 3bb7dfac-3a0b-4e04-842a-767bc560f471 --- src/html5/js/Client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/html5/js/Client.js b/src/html5/js/Client.js index 8c5c5276b9..5c50af9366 100644 --- a/src/html5/js/Client.js +++ b/src/html5/js/Client.js @@ -2742,7 +2742,7 @@ XpraClient.prototype._process_draw_queue = function(packet, ctx){ ctx.request_redraw(win); } else { - decode_time = Math.round(1000*(Utilities.monotonicTime() - start)); + decode_time = Math.round(Utilities.monotonicTime() - start); } ctx.debug("draw", "decode time for ", coding, " sequence ", packet_sequence, ": ", decode_time, ", flush=", flush); send_damage_sequence(decode_time, error || "");