Fix comma in weather output
This commit is contained in:
parent
b0188483ac
commit
d1903c27e7
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue