LSP - grmbl incomplete list
This commit is contained in:
parent
053ada16b0
commit
b9a9bde94a
1 changed files with 7 additions and 4 deletions
11
lsp/mist.js
11
lsp/mist.js
|
@ -4219,14 +4219,17 @@ var mist = {
|
|||
if ('log' in d) { mist.data.log = d.log; }
|
||||
if ('streams' in d) {
|
||||
if (d.streams) {
|
||||
if ('incomplete_list' in d.streams) {
|
||||
delete d.streams.incomplete_list;
|
||||
if ('incomplete list' in d.streams) {
|
||||
delete d.streams['incomplete list'];
|
||||
$.extend(mist.data.streams,d.streams);
|
||||
}
|
||||
else {
|
||||
mist.data.streams = d.streams;
|
||||
}
|
||||
}
|
||||
else {
|
||||
d.streams = {};
|
||||
mist.data.streams = {};
|
||||
}
|
||||
mist.data.streams = d.streams;
|
||||
}
|
||||
|
||||
//does this really belong globally stored here?
|
||||
|
|
Loading…
Add table
Reference in a new issue