Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI JS: DVR - fix the Play link in the finished recordings
  • Loading branch information
perexg committed Sep 9, 2014
1 parent 679eae5 commit 876b734
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/webui/static/app/dvr.js
Expand Up @@ -235,10 +235,10 @@ tvheadend.dvr_finished = function(panel, index) {
width: 40,
header: "Play",
renderer: function(v, o, r) {
var title = r.data['title'];
var title = r.data['disp_title'];
if (r.data['episode'])
title += ' / ' + r.data['episode'];
return '<a href="play/dvrfile/' + r.data['id'] +
return '<a href="play/dvrfile/' + r.id +
'?title=' + encodeURIComponent(title) + '">Play</a>';
}
}],
Expand Down

0 comments on commit 876b734

Please sign in to comment.