Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mpegts input: don't show disabled tuners in the status grid
  • Loading branch information
perexg committed Oct 13, 2015
1 parent dc6cd96 commit 8dddd8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/mpegts_input.c
Expand Up @@ -1534,7 +1534,7 @@ mpegts_input_get_streams
mpegts_input_stream_status(mmi, st);
LIST_INSERT_HEAD(isl, st, link);
}
if (st == NULL && mi->mi_empty_status) {
if (st == NULL && mi->mi_empty_status && mi->mi_enabled) {
st = calloc(1, sizeof(tvh_input_stream_t));
mi->mi_empty_status(mi, st);
LIST_INSERT_HEAD(isl, st, link);
Expand Down

0 comments on commit 8dddd8c

Please sign in to comment.