Skip to content

Commit

Permalink
Suppress the "Untitled" subtitle
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Hurlbut <ghurlbut@mythtv.org>
  • Loading branch information
bceylon authored and Beirdo committed Aug 12, 2011
1 parent 8d0b36e commit 9ff140b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nuvexport
Expand Up @@ -162,12 +162,12 @@
if ($DEBUG) {
print "\n--------------------------------",
"\nTo encode: ", $episode->{'title'};
print ': ', $episode->{'subtitle'} if ($episode->{'subtitle'});
print ': ', $episode->{'subtitle'} if ($episode->{'subtitle'} && $episode->{'subtitle'} ne 'Untitled');
print "\nUse the following commands:\n";
}
else {
print "\nNow encoding: ", $episode->{'title'};
print ': ', $episode->{'subtitle'} if ($episode->{'subtitle'});
print ': ', $episode->{'subtitle'} if ($episode->{'subtitle'} && $episode->{'subtitle'} ne 'Untitled');
print "\nEncode started: ".localtime()."\n";
}
my $start = time();
Expand Down

0 comments on commit 9ff140b

Please sign in to comment.