mirror of
https://github.com/keanuplayz/TravBot-v3.git
synced 2024-08-15 02:33:12 +00:00
Fixed the error prevention in the neko command
This commit is contained in:
parent
927e306e9a
commit
98e47e3796
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ export default new Command({
|
||||||
any: new Command({
|
any: new Command({
|
||||||
description: "Image type to send.",
|
description: "Image type to send.",
|
||||||
async run($: CommonLibrary): Promise<any> {
|
async run($: CommonLibrary): Promise<any> {
|
||||||
if (!$.args[0] in endpoints.sfw)
|
if (!($.args[0] in endpoints.sfw))
|
||||||
return $.channel.send("Couldn't find that endpoint!");
|
return $.channel.send("Couldn't find that endpoint!");
|
||||||
let baseURL = 'https://nekos.life/api/v2';
|
let baseURL = 'https://nekos.life/api/v2';
|
||||||
let url = new URL(`${baseURL}${endpoints.sfw[$.args[0]]}`);
|
let url = new URL(`${baseURL}${endpoints.sfw[$.args[0]]}`);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue