Connect networks after setting user defaults

This commit is contained in:
Pavel Djundik 2019-12-23 10:27:12 +02:00
parent 8696f03e8d
commit fe031c8b12

View file

@ -79,12 +79,6 @@ function Client(manager, name, config = {}) {
}
}
(client.config.networks || []).forEach((network) => client.connect(network, true));
// Networks are stored directly in the client object
// We don't need to keep it in the config object
delete client.config.networks;
if (typeof client.config.sessions !== "object") {
client.config.sessions = {};
}
@ -115,6 +109,12 @@ function Client(manager, name, config = {}) {
}
});
(client.config.networks || []).forEach((network) => client.connect(network, true));
// Networks are stored directly in the client object
// We don't need to keep it in the config object
delete client.config.networks;
if (client.name) {
log.info(`User ${colors.bold(client.name)} loaded`);