LSP add push page fix for no folder streams

This commit is contained in:
cat 2016-05-13 14:43:08 +02:00
parent d832f12416
commit 27f9b9b4f9
2 changed files with 34 additions and 26 deletions

View file

@ -3508,6 +3508,14 @@ var UI = {
browserequests++;
}
}
if (browserequests == browsecomplete) {
//filter to only unique and sort
allthestreams = allthestreams.filter(function(e,i,arr){
return arr.lastIndexOf(e) === i;
}).sort();
buildTheThings();
}
},{
active_streams:1
});