From 438ea86155e8a67352be61645e9341bd00f4a4bb Mon Sep 17 00:00:00 2001 From: Daniel Howard Date: Fri, 27 Jun 2014 16:40:24 -0700 Subject: [PATCH] Fix _friendUpdate() to send correct string to l10n. --- client/js/im.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/js/im.js b/client/js/im.js index 74bd942..d2a3135 100644 --- a/client/js/im.js +++ b/client/js/im.js @@ -849,7 +849,7 @@ $.extend(AjaxIM.prototype, { var date_stamp_date = date_stamp.find('.imjs-date-date').html( AjaxIM.l10n[ - 'chat' + status.toUpperCase() + status.slice(1) + 'chat' + status.toUpperCase().slice(0, 1) + status.slice(1) ].replace(/%s/g, friend)); var msglog = this.chats[friend].find('.imjs-msglog');