diff --git a/src/index.ts b/src/index.ts index 4c2b31c..26195c4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -15,7 +15,13 @@ const sortable = [ export default async function randomBunny(subreddit: string, sortBy: string = 'hot'): Promise { if (!sortable.includes(sortBy)) sortBy = 'hot'; - const result = await fetch(`https://reddit.com/r/${subreddit}/${sortBy}.json`); + const result = await fetch(`https://reddit.com/r/${subreddit}/${sortBy}.json`) + .then((res) => { + return res; + }) + .catch(() => { + return null; + }); if (!result) { return {