Fixed typos in ready.ts

This commit is contained in:
Christer Warén 2021-08-27 02:52:30 +03:00
parent c539a63011
commit 42591791c3

View File

@ -25,7 +25,7 @@ module.exports = {
client.stations = await fetch(client.config.stationslistUrl)
.then(client.funcs.checkFetchStatus)
.then(response => response.json());
client.funcs.logger('Stations', 'Successfully fetched list' + "\n");
client.funcs.logger('Stations', 'Successfully fetched list');
} catch (error) {
client.funcs.logger('Stations', ' Fetching list failed');
console.error(error + "\n");
@ -33,11 +33,11 @@ module.exports = {
setInterval(async () => {
try {
client.funcs.logger('Stations' + 'Started fetching list ' + client.config.stationslistUrl);
client.funcs.logger('Stations', 'Started fetching list ' + client.config.stationslistUrl);
client.stations = await fetch(client.config.stationslistUrl)
.then(client.funcs.checkFetchStatus)
.then(response => response.json());
console.log('Stations', 'Successfully fetched list' + "\n");
client.funcs.logger('Stations', 'Successfully fetched list');
} catch (error) {
client.funcs.logger('Stations', 'Fetching list failed');
//console.error(error);