Merge pull request #3458 from thelounge/xpaw/remove-warn

Do not print "no packages" warning when opening help on client
This commit is contained in:
Pavel Djundik 2019-10-21 15:59:11 +03:00 committed by GitHub
commit 28949fb5e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -146,7 +146,11 @@ async function outdated(cacheTimeout = TIME_TO_LIVE) {
// Check if the configuration file exists
if (!fs.existsSync(packagesConfig)) {
log.warn("There are no packages installed.");
// CLI calls outdated with zero TTL, so we can print the warning there
if (!cacheTimeout) {
log.warn("There are no packages installed.");
}
return false;
}