diff options
author | Alib <aliboba@free.fr> | 2010-03-17 16:45:56 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-03-17 16:45:56 +0100 |
commit | 566721149b851b6a97e3d186aae78bd4eefceafb (patch) | |
tree | d2748b67524cb57409fac03301bdccc52b1f5253 /js | |
parent | 7503096bd6915f48eb31f2698ed8a68b40fe187c (diff) | |
download | istreamdev-566721149b851b6a97e3d186aae78bd4eefceafb.tar.gz istreamdev-566721149b851b6a97e3d186aae78bd4eefceafb.tar.bz2 |
fixed active sessions
Diffstat (limited to 'js')
-rw-r--r-- | js/istreamdev.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/istreamdev.js b/js/istreamdev.js index 84321dc..f163f49 100644 --- a/js/istreamdev.js +++ b/js/istreamdev.js @@ -157,7 +157,7 @@ var dataString = "action=getRunningSessions"; dataString,
function(data){
$('#home #runningsessions').append('<li><span class="menutitle">SESSIONS</span></li>');
- if ( data.broadcast.length > 1 ) {
+ if ( data.broadcast.length >= 1 ) {
$.each(data.broadcast, function(i,broadcast){
session = broadcast.session;
name = broadcast.name;
|