v2.0 #22

Merged
Vylpes merged 7 commits from develop into master 2021-12-02 10:37:18 +00:00
Showing only changes of commit dbf1d03524 - Show all commits

View file

@ -8,8 +8,8 @@ const sortable = [
'top'
];
export default async function randomBunny(subreddit: string, sortBy: string, maxTries = 100): Promise<IFetchResult> {
if (!sortable.includes(sortBy)) sortBy = 'hot';
export default async function randomBunny(subreddit: string, sortBy?: string, maxTries = 100): Promise<IFetchResult> {
if (!sortBy || !sortable.includes(sortBy)) sortBy = 'hot';
const result = await fetch(`https://reddit.com/r/${subreddit}/${sortBy}.json`);