diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/multischedule.ecpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/multischedule.ecpp b/pages/multischedule.ecpp index e82942b..d06ac44 100644 --- a/pages/multischedule.ecpp +++ b/pages/multischedule.ecpp @@ -317,7 +317,7 @@ std::vector<time_t> times_start; #endif if ( ! Channel ) continue; - if ( Channel->GroupSep() || Channel->Name() == '\0' ) + if ( Channel->GroupSep() || !Channel->Name() || !*Channel->Name() ) continue; channel_names[ j ] = Channel->Name(); channel_IDs[ j ] = Channel->GetChannelID(); |