minor bugfix @ streams refresh viewers
This commit is contained in:
parent
09d68beda3
commit
e730f9c61e
2 changed files with 5 additions and 4 deletions
|
@ -730,8 +730,9 @@ function buildLogsTable(){
|
|||
@params: - query: the directory query
|
||||
*/
|
||||
function conversionDirQuery(query) {
|
||||
settings.settings.conversion.query = query;
|
||||
getData(function(data){
|
||||
var c = data.conversion.arrayoffilenamesreturnedbyquery
|
||||
var c = data.conversion.arrayoffilenamesreturnedbyquery;
|
||||
//todo change this ^
|
||||
|
||||
for (var i in c) {
|
||||
|
|
|
@ -717,9 +717,9 @@
|
|||
{
|
||||
streamstatus = formatStatus(streams[stream][0]);
|
||||
}
|
||||
$(this).children(':nth-child(5)').html(formatStatus(streamstatus));
|
||||
$(this).children(':nth-child(6)').html(streams[stream][1]);
|
||||
}
|
||||
$(this).children(':nth-child(5)').html(formatStatus(streamstatus));
|
||||
$(this).children(':nth-child(6)').html(streams[stream][1]);
|
||||
});
|
||||
});
|
||||
};
|
||||
|
@ -1363,7 +1363,7 @@
|
|||
)
|
||||
);
|
||||
|
||||
conversionDirQuery(c.query);
|
||||
conversionDirQuery('./');
|
||||
for (var i in c.encoders) {
|
||||
$('#conv-edit-encoder').append(
|
||||
$('<option>').value(c.encoders[i])
|
||||
|
|
Loading…
Add table
Reference in a new issue