mirror of
https://github.com/dkmstr/openuds.git
synced 2025-01-03 01:17:56 +03:00
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…
Reference in New Issue
Block a user