Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Duplicate
-
0.9.13-incubating
-
None
-
RDP of Windows Server 2012 R2 on Chrome Browser.
Guacamole Version : 0.9.13-incubating
-
Important
Description
Text when copied from JS file from local Machine:
function __send_blob(bytes) {
var binary = "";
// Produce binary string from bytes in buffer
for (var i=0; i<bytes.byteLength; i++)
// Send as base64
stream.sendBlob(window.btoa(binary));
}
*Text when pasted to RDP on Browser: *
function __send_blob(bytes) { var binary = ""; // Produce binary string from bytes in buffer for (var i=0; i<bytes.byteLength; i++) { binary += String.fromCharCode(bytes[i]); }
// Send as base64 stream.sendBlob(window.btoa(binary)); }
As you can see this is stripping all the CR/LF out of pasted text.
Attachments
Attachments
Issue Links
- duplicates
-
GUACAMOLE-310 Direct clipboard integration strips newlines
-
- Resolved
-