From 12efe8675e5f0591308c10949174e64e42eb1f04 Mon Sep 17 00:00:00 2001 From: JoramWilander Date: Mon, 1 Feb 2016 08:01:49 -0500 Subject: Fix console errors --- web/react/components/navbar.jsx | 8 ++++++-- web/react/components/sidebar.jsx | 5 ++++- 2 files changed, 10 insertions(+), 3 deletions(-) (limited to 'web') diff --git a/web/react/components/navbar.jsx b/web/react/components/navbar.jsx index ae14fca2f..7326a9ef8 100644 --- a/web/react/components/navbar.jsx +++ b/web/react/components/navbar.jsx @@ -392,10 +392,14 @@ export default class Navbar extends React.Component { } else if (channel.type === 'D') { isDirect = true; if (this.state.users.length > 1) { + let p; if (this.state.users[0].id === currentId) { - channelTitle = UserStore.getProfile(this.state.users[1].id).username; + p = UserStore.getProfile(this.state.users[1].id); } else { - channelTitle = UserStore.getProfile(this.state.users[0].id).username; + p = UserStore.getProfile(this.state.users[0].id); + } + if (p != null) { + channelTitle = p.username; } } } diff --git a/web/react/components/sidebar.jsx b/web/react/components/sidebar.jsx index c902731c9..fdd069bb2 100644 --- a/web/react/components/sidebar.jsx +++ b/web/react/components/sidebar.jsx @@ -182,7 +182,10 @@ export default class Sidebar extends React.Component { let currentChannelName = channel.display_name; if (channel.type === 'D') { - currentChannelName = Utils.getDirectTeammate(channel.id).username; + const teammate = Utils.getDirectTeammate(channel.id); + if (teammate != null) { + currentChannelName = teammate.username; + } } const unread = this.getTotalUnreadCount(); -- cgit v1.2.3-1-g7c22