diff --git a/app/screens/channel_info/index.js b/app/screens/channel_info/index.js index 9fd9f3f53..854164f5d 100644 --- a/app/screens/channel_info/index.js +++ b/app/screens/channel_info/index.js @@ -46,7 +46,7 @@ function makeMapStateToProps() { currentChannelGuestCount = 1; } customStatusEnabled = isCustomStatusEnabled(state); - customStatus = customStatusEnabled && getCustomStatus(state, teammateId); + customStatus = customStatusEnabled ? getCustomStatus(state, teammateId) : undefined; customStatusExpired = customStatusEnabled ? isCustomStatusExpired(state, customStatus) : true; customStatusExpirySupported = customStatusEnabled ? isCustomStatusExpirySupported(state) : false; }