Commit 6227a91c authored by samhed's avatar samhed

Decode from UTF-8 to allow unicode characters in the connection name

parent f1e6daf3
......@@ -923,7 +923,7 @@ init_msg = function() {
/* Connection name/title */
name_length = ws.rQshift32();
fb_name = ws.rQshiftStr(name_length);
fb_name = decodeURIComponent(escape(ws.rQshiftStr(name_length)));
conf.onDesktopName(that, fb_name);
if (conf.true_color && fb_name === "Intel(r) AMT KVM")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment