Browse Source

*sigh* fixed hidden channels breaking the JavaScript

Natenom/support-murmur-13-1446181288462
Michael Ziegler 15 years ago
parent
commit
edc7af8cf4
  1. 2
      pyweb/mumble/views.py

2
pyweb/mumble/views.py

@ -112,7 +112,7 @@ def show( request, server ):
# ChannelTable is a somewhat misleading name, as it actually contains channels and players.
channelTable = [];
for id in srv.channels:
if id != 0:
if id != 0 and srv.channels[id].show:
channelTable.append( srv.channels[id] );
for id in srv.players:
channelTable.append( srv.players[id] );

Loading…
Cancel
Save