include useragent in headers
This commit is contained in:
parent
493a9bce10
commit
f7adf1a865
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ module.exports = class {
|
||||||
}
|
}
|
||||||
|
|
||||||
message.channel.sendTyping();
|
message.channel.sendTyping();
|
||||||
fetch(`https://api.openweathermap.org/data/2.5/weather?q=${city + countryCode}&appid=${client.config.keys.weather}`)
|
fetch(`https://api.openweathermap.org/data/2.5/weather?q=${city + countryCode}&appid=${client.config.keys.weather}`, { headers: { 'User-Agent': client.config.userAgent }})
|
||||||
.then(res => res.json())
|
.then(res => res.json())
|
||||||
.then(json => {
|
.then(json => {
|
||||||
if (json.cod >= 200 && json.cod <= 299) {
|
if (json.cod >= 200 && json.cod <= 299) {
|
||||||
|
|
Loading…
Reference in a new issue