summaryrefslogtreecommitdiffstats
path: root/webapp/utils
diff options
context:
space:
mode:
authorenahum <nahumhbl@gmail.com>2016-12-26 11:28:40 -0300
committerChristopher Speller <crspeller@gmail.com>2016-12-26 09:28:40 -0500
commit47581e696492566684620b42a7ad476ec5f4c323 (patch)
treeb2684f433122d72e0a245964b5cd1362acac48cb /webapp/utils
parent0a1b0d051a1a7d83ad01502f8073d35ee5da95cc (diff)
downloadchat-47581e696492566684620b42a7ad476ec5f4c323.tar.gz
chat-47581e696492566684620b42a7ad476ec5f4c323.tar.bz2
chat-47581e696492566684620b42a7ad476ec5f4c323.zip
Fix error after leaving team (#4888)
Diffstat (limited to 'webapp/utils')
-rw-r--r--webapp/utils/async_client.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/utils/async_client.jsx b/webapp/utils/async_client.jsx
index 66f13f04d..25724ec5e 100644
--- a/webapp/utils/async_client.jsx
+++ b/webapp/utils/async_client.jsx
@@ -139,7 +139,7 @@ export function getMyChannelMembers() {
}
export function viewChannel(channelId = ChannelStore.getCurrentId(), prevChannelId = '', time = 0) {
- if (channelId == null) {
+ if (channelId == null || !Client.teamId) {
return;
}