Fix comma in weather output

This commit is contained in:
SileNce5k 2023-12-03 21:19:07 +01:00
parent b0188483ac
commit d1903c27e7
No known key found for this signature in database
GPG key ID: C507260E7F2583AD

View file

@ -8,7 +8,7 @@ module.exports = {
message.channel.send(`You have to provide a location`)
return;
}
let location = args.join()
let location = args.join(" ")
let weather = await getWeather(location).catch((err) => {
console.log(err);
});