diff options
Diffstat (limited to 'menudetailview.c')
-rw-r--r-- | menudetailview.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/menudetailview.c b/menudetailview.c index d23cc7d..66a1428 100644 --- a/menudetailview.c +++ b/menudetailview.c @@ -521,8 +521,10 @@ void cNopacityMenuDetailEventView::LoadReruns(void) { sstrReruns << "- " << *DayDateTime(r->event->StartTime()); cChannel *channel = Channels.GetByChannelID(r->event->ChannelID(), true, true); - if (channel) + if (channel) { + sstrReruns << ", " << channel->Number() << "."; sstrReruns << " " << channel->ShortName(true); + } sstrReruns << ": " << r->event->Title(); if (!isempty(r->event->ShortText())) sstrReruns << "~" << r->event->ShortText(); |