fix(rn,navbar) fix invalid boolean check
`startTimestamp` is not a boolean, so make sure we return one.
This commit is contained in:
parent
449e226e23
commit
4401ea8818
|
@ -97,7 +97,7 @@ function _mapStateToProps(state) {
|
|||
|
||||
return {
|
||||
_conferenceTimerEnabled:
|
||||
getFeatureFlag(state, CONFERENCE_TIMER_ENABLED, true) && !hideConferenceTimer && startTimestamp,
|
||||
Boolean(getFeatureFlag(state, CONFERENCE_TIMER_ENABLED, true) && !hideConferenceTimer && startTimestamp),
|
||||
_meetingName: getConferenceName(state),
|
||||
_meetingNameEnabled:
|
||||
getFeatureFlag(state, MEETING_NAME_ENABLED, true) && !hideConferenceSubject,
|
||||
|
|
Loading…
Reference in New Issue