get active viewers even when not live (we want waiting count) (#322)
This commit is contained in:
parent
3269b84385
commit
314b63705d
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ const select = (state, props) => {
|
||||||
return {
|
return {
|
||||||
claimId,
|
claimId,
|
||||||
viewCount: selectViewCountForUri(state, props.uri),
|
viewCount: selectViewCountForUri(state, props.uri),
|
||||||
activeViewers: props.livestream && props.isLive && claimId ? selectViewersForId(state, claimId) : undefined,
|
activeViewers: props.livestream && claimId ? selectViewersForId(state, claimId) : undefined,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue