mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
Show max viewers
This commit is contained in:
parent
4553ae628b
commit
ce41b6ad40
2 changed files with 5 additions and 1 deletions
|
@ -74,6 +74,8 @@
|
|||
|
||||
<div id="stream-info">
|
||||
{{ streamStatus }} {{ viewerCount }} {{ 'viewer' | plural(viewerCount) }}.
|
||||
Max {{ sessionMaxViewerCount }} {{ 'viewer' | plural(sessionMaxViewerCount) }},
|
||||
{{ overallMaxViewerCount }} overall.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -59,7 +59,9 @@ async function getStatus() {
|
|||
: "Stream is offline."
|
||||
|
||||
app.viewerCount = status.viewerCount
|
||||
|
||||
app.sessionMaxViewerCount = status.sessionMaxViewerCount
|
||||
app.overallMaxViewerCount = status.overallMaxViewerCount
|
||||
|
||||
} catch (e) {
|
||||
app.streamStatus = "Stream server is offline."
|
||||
app.viewerCount = 0
|
||||
|
|
Loading…
Reference in a new issue