mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-12 15:57:43 +02:00
Fix some subreddits not showing icon
This commit is contained in:
@@ -55,7 +55,7 @@ module.exports = class SubredditCommand extends Command {
|
||||
|
||||
async fetchIcon(subreddit) {
|
||||
const { body } = await request.get(`https://www.reddit.com/r/${subreddit}/about.json`);
|
||||
if (!body.data.icon_img) return 'https://i.imgur.com/DSBOK0P.png';
|
||||
return body.data.icon_img;
|
||||
if (!body.data.icon_img && !body.data.community_icon) return 'https://i.imgur.com/DSBOK0P.png';
|
||||
return body.data.icon_img || body.data.community_icon;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user