merge
This commit is contained in:
commit
1327cfebda
|
@ -47,7 +47,7 @@ window.wsc_emergency = wsc.channel('emergency/31').listen(function(msg, err){
|
||||||
|
|
||||||
// {1} Rem messages from stack //
|
// {1} Rem messages from stack //
|
||||||
for( var id of gstore.data.notif.emergency.data )
|
for( var id of gstore.data.notif.emergency.data )
|
||||||
if( msg.del.indexOf(gstore.data.notif.emergency.data[id].id) > -1 )
|
if( msg.del[ gstore.data.notif.emergency.data[id].id ] != null )
|
||||||
delete gstore.data.notif.emergency.data[id];
|
delete gstore.data.notif.emergency.data[id];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -57,7 +57,7 @@ window.wsc_emergency = wsc.channel('emergency/31').listen(function(msg, err){
|
||||||
|
|
||||||
// {1} Update messages in stack //
|
// {1} Update messages in stack //
|
||||||
for( var id of gstore.data.notif.emergency.data )
|
for( var id of gstore.data.notif.emergency.data )
|
||||||
if( msg.del[ gstore.data.notif.emergency.data[id].id ] != null )
|
if( msg.upd[ gstore.data.notif.emergency.data[id].id ] != null )
|
||||||
gstore.data.notif.emergency.data[id] = msg.upd;
|
gstore.data.notif.emergency.data[id] = msg.upd;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue