Fixed incorrect total sources count on list sources

master
Víctor Zamanillo 2020-09-21 21:32:07 +02:00
parent c5eb7fcea4
commit acd9e1a0a5
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ func hasStdin() bool {
}
func listSources(options *Options) {
gologger.Infof("Current list of available sources. [%d]\n", len(options.YAMLConfig.Sources))
gologger.Infof("Current list of available sources. [%d]\n", len(options.YAMLConfig.AllSources))
gologger.Infof("Sources marked with an * needs key or token in order to work.\n")
gologger.Infof("You can modify %s to configure your keys / tokens.\n\n", options.ConfigFile)