forked from shaba/openuds
Some characters cause troubles on some devices (tablets, mobiles, ..) so we have removed anything outside ASCII
This commit is contained in:
parent
2bda255c2a
commit
918259079a
@ -774,7 +774,7 @@ GuacUI.Client.attach = function(guac) {
|
||||
blob.oncomplete = function() {
|
||||
|
||||
download.ondownload = function() {
|
||||
saveAs(blob.getBlob(), blob.name);
|
||||
saveAs(blob.getBlob(), blob.name.replace(/[\u0080-\uffff]/g, "_").replace(/\s/g, "_"));
|
||||
};
|
||||
|
||||
download.complete();
|
||||
|
Loading…
x
Reference in New Issue
Block a user