Fix _friendUpdate() to send correct string to l10n.

Esse commit está contido em:
Daniel Howard
2014-06-27 16:40:24 -07:00
commit 438ea86155
+1 -1
Ver Arquivo
@@ -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');