From 8af4fd64c1b97096260ddf50168f84388ad06a25 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Thu, 8 Sep 2011 21:37:25 -0400 Subject: [PATCH] telepathyClient: Fix undefined variable https://bugzilla.gnome.org/show_bug.cgi?id=658624 --- js/ui/telepathyClient.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/telepathyClient.js b/js/ui/telepathyClient.js index 1fba939e2..a8c02b84b 100644 --- a/js/ui/telepathyClient.js +++ b/js/ui/telepathyClient.js @@ -1019,7 +1019,7 @@ ChatNotification.prototype = { IM name. */ let message = '' + _("%s is now known as %s").format(oldAlias, newAlias) + ''; - let label = this._append({ body: text, + let label = this._append({ body: message, group: 'meta', styles: ['chat-meta-message'] });