From bb29cc5e277a6bd7552136479be65eae26663b61 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 5 Jun 2018 15:46:46 +0300 Subject: [PATCH] Show user color in chat messages --- apps/common/main/lib/controller/Chat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/controller/Chat.js b/apps/common/main/lib/controller/Chat.js index 36a61151d..4ced54e87 100644 --- a/apps/common/main/lib/controller/Chat.js +++ b/apps/common/main/lib/controller/Chat.js @@ -190,7 +190,7 @@ define([ var array = []; messages.forEach(function(msg) { array.push(new Common.Models.ChatMessage({ - userid : msg.user, + userid : msg.useridoriginal, message : msg.message, username : msg.username }));