summaryrefslogtreecommitdiffstats
path: root/fix-download-unicode/cfs_access-point.txt
diff options
context:
space:
mode:
Diffstat (limited to 'fix-download-unicode/cfs_access-point.txt')
-rw-r--r--fix-download-unicode/cfs_access-point.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/fix-download-unicode/cfs_access-point.txt b/fix-download-unicode/cfs_access-point.txt
index 145218df..de1c6c76 100644
--- a/fix-download-unicode/cfs_access-point.txt
+++ b/fix-download-unicode/cfs_access-point.txt
@@ -451,10 +451,10 @@ FS.HTTP.Handlers.Get = function (ref) {
if(userAgent.indexOf('msie') >= 0 || userAgent.indexOf('trident') >= 0 || userAgent.indexOf('chrome') >= 0) {
ref.filename = encodeURIComponent(ref.filename);
} else if(userAgent.indexOf('firefox') >= 0) {
- ref.filename = new Buffer.alloc(ref.filename).toString('binary');
+ ref.filename = Buffer.from(ref.filename).toString('binary');
} else {
/* safari*/
- ref.filename = new Buffer.alloc(ref.filename).toString('binary');
+ ref.filename = Buffer.from(ref.filename).toString('binary');
}
} catch (ex){
ref.filename = 'tempfix';