mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Fix some subreddits not showing icon
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "110.5.2",
|
||||
"version": "110.5.3",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -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