From 9cb375fcef204e81099dcb3d59aead077a36ce41 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 18 Nov 2013 08:22:29 +0000 Subject: [PATCH] chore(socket) add " " --- lib/server/socket.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/server/socket.js b/lib/server/socket.js index 91b0a0d2..bdad9fe3 100644 --- a/lib/server/socket.js +++ b/lib/server/socket.js @@ -144,10 +144,10 @@ * windows use unicode on non English versions */ if(WIN32) { - lWinCommand = pCommand.toUpperCase(); + lWinCommand = pCommand.toUpperCase(); - if( Win32Commands.indexOf(lWinCommand) >= 0 ) - pCommand = 'chcp 65001 |' + pCommand; + if (Win32Commands.indexOf(lWinCommand) >= 0) + pCommand = 'chcp 65001 |' + pCommand; } if(!ClientFuncs[pConnNum])