diff --git a/src/controllers/livetv.html b/src/controllers/livetv.html index b1f60f4efa..2a484c6db0 100644 --- a/src/controllers/livetv.html +++ b/src/controllers/livetv.html @@ -64,6 +64,9 @@
+
+
+
diff --git a/src/controllers/livetv/livetvchannels.js b/src/controllers/livetv/livetvchannels.js index cd7b50dd44..000cb5e3ec 100644 --- a/src/controllers/livetv/livetvchannels.js +++ b/src/controllers/livetv/livetvchannels.js @@ -65,14 +65,18 @@ export default function (view, params, tabContent) { } const query = getQuery(); - context.querySelector('.paging').innerHTML = libraryBrowser.getQueryPagingHtml({ - startIndex: query.StartIndex, - limit: query.Limit, - totalRecordCount: result.TotalRecordCount, - showLimit: false, - updatePageSizeSetting: false, - filterButton: false - }); + + for (const elem of context.querySelectorAll('.paging')) { + elem.innerHTML = libraryBrowser.getQueryPagingHtml({ + startIndex: query.StartIndex, + limit: query.Limit, + totalRecordCount: result.TotalRecordCount, + showLimit: false, + updatePageSizeSetting: false, + filterButton: false + }); + } + const html = getChannelsHtml(result.Items); const elem = context.querySelector('#items'); elem.innerHTML = html;