mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-1793: Fix creation of SessionRecording from blob.
This commit is contained in:
@@ -398,8 +398,10 @@ Guacamole.SessionRecording = function SessionRecording(source) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Read instructions from provided blob, extracting each frame
|
// Read instructions from provided blob, extracting each frame
|
||||||
if (source instanceof Blob)
|
if (source instanceof Blob) {
|
||||||
|
recordingBlob = source;
|
||||||
parseBlob(recordingBlob, loadInstruction, notifyLoaded);
|
parseBlob(recordingBlob, loadInstruction, notifyLoaded);
|
||||||
|
}
|
||||||
|
|
||||||
// If tunnel provided instead of Blob, extract frames, etc. as instructions
|
// If tunnel provided instead of Blob, extract frames, etc. as instructions
|
||||||
// are received, buffering things into a Blob for future seeks
|
// are received, buffering things into a Blob for future seeks
|
||||||
|
Reference in New Issue
Block a user