mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUACAMOLE-896: Always flush instruction buffer upon end of static tunnel.
This commit is contained in:
@@ -442,8 +442,8 @@ Guacamole.SessionRecording = function SessionRecording(source) {
|
||||
tunnel.onstatechange = function tunnelStateChanged(state) {
|
||||
if (state === Guacamole.Tunnel.State.CLOSED) {
|
||||
|
||||
// Append to Blob (creating a new Blob in the process)
|
||||
if (instructionBuffer.length >= BLOCK_SIZE) {
|
||||
// Append any remaining instructions
|
||||
if (instructionBuffer.length) {
|
||||
recordingBlob = new Blob([recordingBlob, instructionBuffer]);
|
||||
instructionBuffer = '';
|
||||
}
|
||||
|
Reference in New Issue
Block a user