Handle null currentChannelMember (#2980)
This commit is contained in:
parent
0af97a1f63
commit
dcfb39efa4
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ function mapStateToProps(state) {
|
|||
currentChannelMemberCount,
|
||||
currentUserId,
|
||||
isChannelMuted: isChannelMuted(currentChannelMember),
|
||||
ignoreChannelMentions: areChannelMentionsIgnored(currentChannelMember.notify_props, currentUser.notify_props),
|
||||
ignoreChannelMentions: areChannelMentionsIgnored(currentChannelMember && currentChannelMember.notify_props, currentUser.notify_props),
|
||||
isCurrent,
|
||||
isFavorite,
|
||||
status,
|
||||
|
|
|
|||
Loading…
Reference in a new issue