Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
webui: fix js syntax (chrome)
  • Loading branch information
perexg committed Jun 20, 2015
1 parent bad281a commit f1bf36a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/api/api_channel.c
Expand Up @@ -112,6 +112,7 @@ api_channel_tag_list
l = htsmsg_create_list();
TAILQ_FOREACH(ct, &channel_tags, ct_link)
if (cfg || channel_tag_access(ct, perm, 0)) {
printf("channel tag list: '%s' '%s'\n", idnode_uuid_as_str(&ct->ct_id), ct->ct_name);
if (ct->ct_enabled) {
api_channel_key_val(l, idnode_uuid_as_str(&ct->ct_id), ct->ct_name);
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/webui/static/app/tvheadend.js
Expand Up @@ -94,7 +94,7 @@ tvheadend.loading = function(on) {
Ext.getBody().unmask();
};

tvheadend.PagingToolbarConf = function(conf, title, auto=null, count=null)
tvheadend.PagingToolbarConf = function(conf, title, auto, count)
{
conf.width = 50;
conf.pageSize = 50;
Expand Down

0 comments on commit f1bf36a

Please sign in to comment.