This commit is contained in:
parent
51d6fbad64
commit
c38f961608
|
@ -72,12 +72,6 @@
|
||||||
events:function(cfg,id,type){
|
events:function(cfg,id,type){
|
||||||
var changed=false;
|
var changed=false;
|
||||||
var time=(new Date()).getTime();
|
var time=(new Date()).getTime();
|
||||||
for(var i=0;i<events.length;i++){
|
|
||||||
if(events[i].utc<=time){
|
|
||||||
events.splice(i--,1);
|
|
||||||
changed=true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(cfg&&id){
|
if(cfg&&id){
|
||||||
if(typeof cfg=='string'){
|
if(typeof cfg=='string'){
|
||||||
for(var i=0;i<events.length;i++){
|
for(var i=0;i<events.length;i++){
|
||||||
|
@ -231,6 +225,14 @@
|
||||||
return clientlist;
|
return clientlist;
|
||||||
},
|
},
|
||||||
updaterooms:function(){
|
updaterooms:function(){
|
||||||
|
if(events.length){
|
||||||
|
var time=(new Date()).getTime();
|
||||||
|
for(var i=0;i<events.length;i++){
|
||||||
|
if(events[i].utc<=time){
|
||||||
|
events.splice(i--,1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
var roomlist=util.getroomlist();
|
var roomlist=util.getroomlist();
|
||||||
for(var i in clients){
|
for(var i in clients){
|
||||||
if(!clients[i].room){
|
if(!clients[i].room){
|
||||||
|
|
Loading…
Reference in New Issue