Skip to content

Commit

Permalink
revert r23551: monotonicTime value is already in milliseconds
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@26526 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed May 30, 2020
1 parent 82c7f96 commit a519920
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/html5/js/Client.js
Expand Up @@ -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 || "");
Expand Down

0 comments on commit a519920

Please sign in to comment.