diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/shows.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/shows.js b/js/shows.js index 1bf7c3b..03af34f 100644 --- a/js/shows.js +++ b/js/shows.js @@ -127,18 +127,18 @@ function shows_updateList(data, status, req) { type = $(this).find('type').text(); if(type == 'show') { var show = { - id: $(this).find('showid').text(), + id: $(this).find('show-id').text(), title: $(this).find('show-title').text(), dow: $(this).find('show-dayofweek').text(), rhythm: $(this).find('show-rhythm').text(), starttime: $(this).find('show-starttime').text(), length: $(this).find('show-length').text(), + log: $(this).find('show-log').text(), group: { name: $(this).find('group').text(), lowcart: $(this).find('group-low-cart').text(), highcart: $(this).find('group-high-cart').text(), }, - log: $(this).find('log').text(), normlevel: $(this).find('normalization-level').text(), trimlevel: $(this).find('autotrim-level').text(), } |