Forgot to remove the api key ( the old one wont work dont try )
This commit is contained in:
parent
a2519de93b
commit
9927f86c20
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
const { Command } = require('discord.js-commando');
|
const { Command } = require('discord.js-commando');
|
||||||
const Discord = require('discord.js');
|
const Discord = require('discord.js');
|
||||||
const snekfetch = require('snekfetch');
|
const snekfetch = require('snekfetch');
|
||||||
|
const { openweatherAPI } = require('./config.json');
|
||||||
module.exports = class WeatherCommand extends Command {
|
module.exports = class WeatherCommand extends Command {
|
||||||
constructor(client) {
|
constructor(client) {
|
||||||
super(client, {
|
super(client, {
|
||||||
|
@ -19,7 +20,7 @@ module.exports = class WeatherCommand extends Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
async run(message, { city }) {
|
async run(message, { city }) {
|
||||||
const { body } = await snekfetch.get('https://api.openweathermap.org/data/2.5/weather?q='+ city +'&units=metric&APPID=688e6d7bcdfdc4b71d921a3de461f76b');
|
const { body } = await snekfetch.get(`https://api.openweathermap.org/data/2.5/weather?q=${city}&units=metric&APPID=${openweatherAPI}`);
|
||||||
if (!body.main.temp) {
|
if (!body.main.temp) {
|
||||||
return message.say(`No results found for **${city}**`);
|
return message.say(`No results found for **${city}**`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue