Skip to content

Commit

Permalink
add suggestion to check the filter if 0 channels are loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Larson committed Jul 4, 2020
1 parent 5820525 commit c3df926
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lineup.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,10 @@ func (l *lineup) processProvider(provider providers.Provider) (int, error) {

log.Infof("Loaded %d channels into the lineup from %s", addedChannels, provider.Name())

if addedChannels == 0 {
log.Infof("Check your filter; %d channels were blocked by it", len(failedChannels))
}

return addedChannels, nil
}

Expand Down

0 comments on commit c3df926

Please sign in to comment.