From 9927f86c207c79aaad10d9b55a755c72c3f19607 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Wed, 26 Sep 2018 13:29:15 +0200 Subject: [PATCH] Forgot to remove the api key ( the old one wont work dont try ) --- commands/fun/weather.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/fun/weather.js b/commands/fun/weather.js index d992a652..9daa9ea5 100644 --- a/commands/fun/weather.js +++ b/commands/fun/weather.js @@ -1,6 +1,7 @@ const { Command } = require('discord.js-commando'); const Discord = require('discord.js'); const snekfetch = require('snekfetch'); +const { openweatherAPI } = require('./config.json'); module.exports = class WeatherCommand extends Command { constructor(client) { super(client, { @@ -19,7 +20,7 @@ module.exports = class WeatherCommand extends Command { } 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) { return message.say(`No results found for **${city}**`); }