From 1ba5864a20216b3e51fc71e718c513d865deb52c Mon Sep 17 00:00:00 2001 From: Joffrey F Date: Sun, 17 Feb 2013 17:38:12 -0800 Subject: [PATCH] removed extra space --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 2283cd8178..22051bf5e9 100644 --- a/index.js +++ b/index.js @@ -552,7 +552,7 @@ function reply_to_strings(reply) { if (Array.isArray(reply)) { for (i = 0; i < reply.length; i++) { if (reply[i] !== null && reply[i] !== undefined) { - reply[i] = reply[i].toString(); + reply[i] = reply[i].toString(); } } return reply;