From f7d23374646a58eaab63ee21b3926741548cca68 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Wed, 10 Sep 2014 19:06:25 +0200 Subject: [PATCH] DVR: fix copy typos (episode-in-title, subtitle-in-title) --- src/dvr/dvr_db.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dvr/dvr_db.c b/src/dvr/dvr_db.c index a39be9ea..19c81124 100644 --- a/src/dvr/dvr_db.c +++ b/src/dvr/dvr_db.c @@ -2454,14 +2454,14 @@ const idclass_t dvr_config_class = { .type = PT_BOOL, .id = "episode-in-title", .name = "Include Episode In Filename", - .off = offsetof(dvr_config_t, dvr_time_in_title), + .off = offsetof(dvr_config_t, dvr_episode_in_title), .group = 4, }, { .type = PT_BOOL, .id = "subtitle-in-title", .name = "Include Subtitle In Filename", - .off = offsetof(dvr_config_t, dvr_time_in_title), + .off = offsetof(dvr_config_t, dvr_subtitle_in_title), .group = 5, }, {