Fix some subreddits not showing icon

This commit is contained in:
Dragon Fire
2020-02-15 11:12:22 -05:00
parent 4071789141
commit 3d4813b909
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "110.5.2",
"version": "110.5.3",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {
+2 -2
View File
@@ -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;
}
};