GUACAMOLE-926: Fix UTF-8 handling in batch import files.

This commit is contained in:
James Muehlner
2023-05-19 22:09:03 +00:00
parent e1dfd1e99c
commit 0c033feea7

View File

@@ -693,7 +693,7 @@ angular.module('import').controller('importConnectionsController', ['$scope', '$
}); });
// Read all the data into memory // Read all the data into memory
$scope.fileReader.readAsBinaryString(file); $scope.fileReader.readAsText(file);
}; };
}]); }]);