From 713c90242b2e74be51b0f7d41961647ac35b478c Mon Sep 17 00:00:00 2001 From: Yann Flory Date: Mon, 11 Apr 2016 15:00:22 +0200 Subject: [PATCH] Hide the usernames when they have not been changed --- www/common/toolbar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/toolbar.js b/www/common/toolbar.js index 738d20c57..6b6323684 100644 --- a/www/common/toolbar.js +++ b/www/common/toolbar.js @@ -132,7 +132,7 @@ define([ userList.forEach(function(user) { if(user !== myUserName) { var data = (userData) ? (userData[user] || null) : null; - var userName = (data) ? data.name : user; + var userName = (data) ? data.name : null; if(userName) { if(i === 0) list = ' : '; list += userName + ', ';