From 0c033feea72c671edf88acc1e7924878cb2920de Mon Sep 17 00:00:00 2001 From: James Muehlner Date: Fri, 19 May 2023 22:09:03 +0000 Subject: [PATCH] GUACAMOLE-926: Fix UTF-8 handling in batch import files. --- .../src/app/import/controllers/importConnectionsController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole/src/main/frontend/src/app/import/controllers/importConnectionsController.js b/guacamole/src/main/frontend/src/app/import/controllers/importConnectionsController.js index fad7af826..b4688203f 100644 --- a/guacamole/src/main/frontend/src/app/import/controllers/importConnectionsController.js +++ b/guacamole/src/main/frontend/src/app/import/controllers/importConnectionsController.js @@ -693,7 +693,7 @@ angular.module('import').controller('importConnectionsController', ['$scope', '$ }); // Read all the data into memory - $scope.fileReader.readAsBinaryString(file); + $scope.fileReader.readAsText(file); }; }]);