From: Robert Cameron Date: Sun, 13 May 2018 00:28:12 +0000 (-0700) Subject: Persist frequency/callsign of CableCARD muxes across restarts X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37c6e87376ef8f2f0c1f543ab4810ef000ab1f42;p=thirdparty%2Ftvheadend.git Persist frequency/callsign of CableCARD muxes across restarts --- diff --git a/src/input/mpegts/mpegts_mux_dvb.c b/src/input/mpegts/mpegts_mux_dvb.c index a09725a68..804e2adce 100644 --- a/src/input/mpegts/mpegts_mux_dvb.c +++ b/src/input/mpegts/mpegts_mux_dvb.c @@ -670,7 +670,7 @@ const idclass_t dvb_mux_cablecard_class = .name = N_("Frequency (Hz)"), .desc = N_("The frequency of the mux (in Hertz)."), .off = offsetof(dvb_mux_t, lm_tuning.dmc_fe_freq), - .opts = PO_RDONLY | PO_NOSAVE, + .opts = PO_RDONLY, }, { .type = PT_STR, @@ -678,7 +678,7 @@ const idclass_t dvb_mux_cablecard_class = .name = N_("Callsign"), .desc = N_("The channel's name or callsign as set by the cable provider."), .off = offsetof(dvb_mux_t, lm_tuning.dmc_fe_vchan.name), - .opts = PO_RDONLY | PO_NOSAVE, + .opts = PO_RDONLY, }, {} }