From 6b3c805b48f6a6ad532dde4a38395d5d3b95a398 Mon Sep 17 00:00:00 2001 From: Andrew Ruthven Date: Fri, 9 Sep 2016 08:40:01 +1200 Subject: [PATCH] Fix disabling skipping idle encoders via the config file. Thanks to Karl for finding this. --- ChangeLog | 4 ++++ bin/mythtv-status | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4291484..d81efb5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2016-09-09 Andrew Ruthven + Fix a bug where it wasn't possible to disable skipping idle + encoders via the config file. Thanks to Karl for finding this. + 2016-08-02 Andrew Ruthven Fix a long standing bug where if the Next Recording is a week and one day in the future, the Next Recording only shows diff --git a/bin/mythtv-status b/bin/mythtv-status index c5ef4a5..69fb815 100755 --- a/bin/mythtv-status +++ b/bin/mythtv-status @@ -49,7 +49,7 @@ $c->{'colour'} ||= 0; $c->{'episode'} ||= 0; $c->{'description'} ||= 0; $c->{'encoder_details'} ||= 0; -$c->{'encoder_skip_idle'} ||= 1; +$c->{'encoder_skip_idle'} //= 1; $c->{'email_only_on_alert'} ||= 0; my $help = 0; my $verbose = 0; -- 2.30.2