LSP - grmbl incomplete list

This commit is contained in:
cat 2015-10-13 09:52:33 +02:00
parent 053ada16b0
commit b9a9bde94a

View file

@ -4219,14 +4219,17 @@ var mist = {
if ('log' in d) { mist.data.log = d.log; } if ('log' in d) { mist.data.log = d.log; }
if ('streams' in d) { if ('streams' in d) {
if (d.streams) { if (d.streams) {
if ('incomplete_list' in d.streams) { if ('incomplete list' in d.streams) {
delete d.streams.incomplete_list; delete d.streams['incomplete list'];
$.extend(mist.data.streams,d.streams);
}
else {
mist.data.streams = d.streams;
} }
} }
else { else {
d.streams = {}; mist.data.streams = {};
} }
mist.data.streams = d.streams;
} }
//does this really belong globally stored here? //does this really belong globally stored here?