Catch broken UTF-8 to enable loading of buffers with broken lines

This commit is contained in:
Lorenz Hübschle-Schneider 2014-06-19 12:48:12 +01:00
parent afb5225bc6
commit f1c21ff23b

View file

@ -574,10 +574,13 @@
WeeChatProtocol._uia2s = function(uia) {
if(!uia.length || uia[0] === 0) return "";
var encodedString = String.fromCharCode.apply(null, uia),
decodedString = decodeURIComponent(escape(encodedString));
return decodedString;
try {
var encodedString = String.fromCharCode.apply(null, uia),
decodedString = decodeURIComponent(escape(encodedString));
return decodedString;
} catch (exception) {
return "--Sorry, Glowing Bear cannot decode this line as it is invalid--";
}
};
/**