We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 936d0c7 commit e0bccb6Copy full SHA for e0bccb6
nuvexport/mythtv/recordings.pm
@@ -62,7 +62,14 @@ package mythtv::recordings;
62
# Load into an object
63
$file = $Myth->new_recording(@$file);
64
# Skip shows without cutlists?
65
- next if (arg('require_cutlist') && !$file->{'has_cutlist'});
+ if (arg('require_cutlist') && !$file->{'has_cutlist'}) {
66
+ if (arg('infile')) {
67
+ print STDERR "WARNING: Overriding --require_cutlist because file was requested with --infile.\n";
68
+ }
69
+ else {
70
+ next;
71
72
73
# Skip files that aren't local (until file info is stored in the db)
74
next unless ($file->{'local_path'} && -e $file->{'local_path'});
75
# Defaults
0 commit comments