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.
This commit is contained in:
Michael Jumper
2022-03-02 20:01:17 +00:00
parent 27c7ab782f
commit c4b8a13968

View File

@@ -613,7 +613,7 @@ Guacamole.SessionRecording = function SessionRecording(source) {
return;
playbackClient.importState(JSON.parse(text));
currentFrame = index;
currentFrame = startIndex;
});
break;