From c4b8a13968f0464e0a6506ede4e93600003c985a Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 2 Mar 2022 20:01:17 +0000 Subject: [PATCH] GUACAMOLE-462: State of recording after resetting to a keyframe is the index of that keyframe, not necessarily the requested seek index. Further instructions may need to be replayed after seeking to the keyframe in order to reach the desired frame index. --- guacamole-common-js/src/main/webapp/modules/SessionRecording.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole-common-js/src/main/webapp/modules/SessionRecording.js b/guacamole-common-js/src/main/webapp/modules/SessionRecording.js index 9836355d4..4f0ff282b 100644 --- a/guacamole-common-js/src/main/webapp/modules/SessionRecording.js +++ b/guacamole-common-js/src/main/webapp/modules/SessionRecording.js @@ -613,7 +613,7 @@ Guacamole.SessionRecording = function SessionRecording(source) { return; playbackClient.importState(JSON.parse(text)); - currentFrame = index; + currentFrame = startIndex; }); break;