Skip to content

Commit

Permalink
Webfrontend: Add IgnoreLiveTV/ & IgnoreDeleted to TV/Recordings
Browse files Browse the repository at this point in the history
The main page also displays the last 10 recordings.

The Ignores were added to Dvr/GetRecordedList in
b41309b
  • Loading branch information
Bill Meek committed Nov 4, 2021
1 parent 4ce98b4 commit eeb9ba3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mythtv/html/misc/overview.qsp
Expand Up @@ -26,7 +26,7 @@ import "/js/utility.js"

var oDvr = new Dvr();
var oMyth = new Myth();
var list = oDvr.GetRecordedList( true, 0, 10, "", "", "", "", "" );
var list = oDvr.GetRecordedList( true, 0, 10, "", "", "", "", "", true, true );

// For padding integer values with leading zeros
function pad(n)
Expand Down
4 changes: 2 additions & 2 deletions mythtv/html/tv/recordings.qsp
Expand Up @@ -46,9 +46,9 @@ import "/tv/js/tvutil.qjs"
displayGroup = "";

var PAGEINTERVAL = 10;
var recordingList = dvr.GetRecordedList( sortDescending, startIndex, PAGEINTERVAL, displayGroup, recGroup, "", "", "" );
var recordingList = dvr.GetRecordedList( sortDescending, startIndex, PAGEINTERVAL, displayGroup, recGroup, "", "", "", true, true );

var deletedList = dvr.GetRecordedList( false, 0, 1, "", "Deleted", "", "", "" );
var deletedList = dvr.GetRecordedList( false, 0, 1, "", "Deleted", "", "", "", true, false );
var showDeletedLink = (deletedList.TotalAvailable > 0) ? true : false;

var nextStartIndex = (startIndex + PAGEINTERVAL);
Expand Down

0 comments on commit eeb9ba3

Please sign in to comment.