Merge 1.5.3 changes back to master.

This commit is contained in:
Mike Jumper
2023-05-24 11:23:15 -07:00
2 changed files with 35 additions and 1 deletions

View File

@@ -398,8 +398,10 @@ Guacamole.SessionRecording = function SessionRecording(source) {
};
// Read instructions from provided blob, extracting each frame
if (source instanceof Blob)
if (source instanceof Blob) {
recordingBlob = source;
parseBlob(recordingBlob, loadInstruction, notifyLoaded);
}
// If tunnel provided instead of Blob, extract frames, etc. as instructions
// are received, buffering things into a Blob for future seeks