Skip to content

Commit

Permalink
Merge pull request jellyfin#2214 from dmitrylyzo/fix-livetv-route
Browse files Browse the repository at this point in the history
Fix LiveTV group anchors
  • Loading branch information
dkanada committed Dec 11, 2020
2 parents f94cbfe + d9e3ef2 commit 5da9d93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/livetv/livetvsuggested.js
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export default function (view, params) {
let initialTabIndex = currentTabIndex;
let lastFullRender = 0;
[].forEach.call(view.querySelectorAll('.sectionTitleTextButton-programs'), function (link) {
const href = link.href;
const href = link.getAttribute('href');

if (href) {
link.href = href + '&serverId=' + ApiClient.serverId();
Expand Down

0 comments on commit 5da9d93

Please sign in to comment.