Only show online client count if we are online. closes https://github.com/owncast/owncast/issues/1306
This commit is contained in:
parent
ad59d6ebda
commit
1e436bdb67
@ -64,9 +64,10 @@ export default function ChatUsers() {
|
||||
When a stream is active and chat is enabled, connected chat clients will be displayed here.
|
||||
</p>
|
||||
);
|
||||
|
||||
return (
|
||||
<>
|
||||
<Title>Connected Chat Participants ({clients.length})</Title>
|
||||
<Title>Connected Chat Participants {online ? `(${clients.length})` : null}</Title>
|
||||
{connectedUsers}
|
||||
<br />
|
||||
<br />
|
||||
|
Loading…
x
Reference in New Issue
Block a user