removed "let sub = args.sub"

merge-requests/3/head
Loïc Bersier 5 years ago
parent 34e217a14c
commit 8ecb0ee0d7

@ -23,13 +23,12 @@ class RedditCommand extends Command {
} }
async exec(message, args) { async exec(message, args) {
let sub = args.sub;
let i = 0; let i = 0;
let a = 0; let a = 0;
if (!sub) if (!args.sub)
return; return;
fetch('https://www.reddit.com/r/' + sub + '.json?limit=100').then((response) => { fetch('https://www.reddit.com/r/' + args.sub + '.json?limit=100').then((response) => {
return response.json(); return response.json();
}).then((response) => { }).then((response) => {
if (!response.data) if (!response.data)

Loading…
Cancel
Save