Remove autoload deprecation notice

This commit is contained in:
Jérémie Astori 2017-11-22 02:06:03 -05:00
parent d0f5d5025e
commit 9a8cde189d
No known key found for this signature in database
GPG key ID: B9A4F245CD67BDE8

View file

@ -20,11 +20,6 @@ ClientManager.prototype.init = function(identHandler, sockets) {
this.webPush = new WebPush();
if (!Helper.config.public && !Helper.config.ldap.enable) {
// TODO: Remove deprecated warning in v3.0.0
if ("autoload" in Helper.config) {
log.warn(`Autoloading users is now always enabled. Please remove the ${colors.yellow("autoload")} option from your configuration file.`);
}
this.autoloadUsers();
}
};