From af2c36e86e2ded8e85df78a02cf341418d4c6cf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Mon, 11 Apr 2016 00:56:59 -0400 Subject: [PATCH] Fix missing channel name from invite notifications --- client/js/lounge.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/js/lounge.js b/client/js/lounge.js index eaa4f3dc..49bb54ae 100644 --- a/client/js/lounge.js +++ b/client/js/lounge.js @@ -775,7 +775,7 @@ $(function() { if (msg.type === "invite") { title = "New channel invite:"; - body = msg.from + " invited you to " + msg.text; + body = msg.from + " invited you to " + msg.channel; } else { title = msg.from; if (!isQuery) {