Update
This commit is contained in:
@@ -529,6 +529,10 @@ func (m *Manager) marshalRoomState(room *Room, viewerParticipantID string) ([]by
|
||||
|
||||
participants := make([]PublicParticipant, 0, len(room.Participants))
|
||||
for _, participant := range sortParticipants(room.Participants) {
|
||||
if !participant.Connected {
|
||||
continue
|
||||
}
|
||||
|
||||
public := PublicParticipant{
|
||||
ID: participant.ID,
|
||||
Username: participant.Username,
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/static/css/main.css">
|
||||
<link rel="stylesheet" href="/static/css/layout.css">
|
||||
<link rel="stylesheet" href="/static/css/cards.css">
|
||||
<link rel="stylesheet" href="/static/css/themes/win98.css">
|
||||
<link rel="stylesheet" href="/static/css/themes/modern.css">
|
||||
<link rel="stylesheet" href="/static/css/themes/no-theme.css">
|
||||
@@ -195,6 +196,7 @@
|
||||
</footer>
|
||||
|
||||
<script src="/static/js/ui-controls.js"></script>
|
||||
<script src="/static/js/cards.js"></script>
|
||||
<script src="/static/js/config.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/static/css/main.css">
|
||||
<link rel="stylesheet" href="/static/css/layout.css">
|
||||
<link rel="stylesheet" href="/static/css/cards.css">
|
||||
<link rel="stylesheet" href="/static/css/themes/win98.css">
|
||||
<link rel="stylesheet" href="/static/css/themes/modern.css">
|
||||
<link rel="stylesheet" href="/static/css/themes/no-theme.css">
|
||||
@@ -161,6 +162,7 @@
|
||||
</footer>
|
||||
|
||||
<script src="/static/js/ui-controls.js"></script>
|
||||
<script src="/static/js/cards.js"></script>
|
||||
<script src="/static/js/room.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user