Fix ci issues

This commit is contained in:
Ethan Lane 2021-04-12 20:16:34 +01:00
parent 6ae96eb38d
commit 3731482186

View file

@ -59,7 +59,7 @@ function randomBunny(subreddit, sortBy, cb) {
}
function promise(subreddit, sortBy) {
return new Promise((resolve, reject) => {
return new Promise((resolve) => {
// If the sortable list doesn't include sortBy, default to 'hot'
if (!sortable.includes(sortBy)) sortBy = 'hot';
@ -118,4 +118,4 @@ function getRandom(min, max) {
module.exports = {
randomBunny,
promise,
}
};