Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
DVR: don't prepend with ., fixes #3198
  • Loading branch information
perexg committed Oct 23, 2015
1 parent ac9fdd2 commit 67522d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dvr/dvr_rec.c
Expand Up @@ -330,7 +330,7 @@ dvr_sub_episode(const char *id, const void *aux, char *tmp, size_t tmplen)
return "";
epg_episode_number_format(de->de_bcast->episode,
buf, sizeof(buf),
".", "S%02d", NULL, "E%02d", NULL);
NULL, "S%02d", NULL, "E%02d", NULL);
return dvr_do_prefix(id, buf, tmp, tmplen);
}

Expand Down

0 comments on commit 67522d5

Please sign in to comment.