Remove r/bongocat from memes

This commit is contained in:
Daniel Odendahl Jr
2018-10-12 23:39:45 +00:00
parent 7c7052525c
commit be7b74e5d8
4 changed files with 4 additions and 5 deletions
+1 -2
View File
@@ -12,6 +12,5 @@
"animemes", "animemes",
"programmerhumor", "programmerhumor",
"bikinibottomtwitter", "bikinibottomtwitter",
"prequelmemes", "prequelmemes"
"bongocat"
] ]
+1 -1
View File
@@ -12,7 +12,7 @@ module.exports = class MemeCommand extends SubredditCommand {
description: 'Responds with a random meme.', description: 'Responds with a random meme.',
details: `**Subreddits:** ${subreddits.join(', ')}`, details: `**Subreddits:** ${subreddits.join(', ')}`,
clientPermissions: ['ATTACH_FILES'], clientPermissions: ['ATTACH_FILES'],
postType: ['image', 'rich:video'], postType: 'image',
args: [ args: [
{ {
key: 'subreddit', key: 'subreddit',
+1 -1
View File
@@ -28,7 +28,7 @@ module.exports = class RedditCommand extends SubredditCommand {
.setTitle(post.title) .setTitle(post.title)
.setImage(post.post_hint === 'image' ? post.url : null) .setImage(post.post_hint === 'image' ? post.url : null)
.setURL(`https://www.reddit.com${post.permalink}`) .setURL(`https://www.reddit.com${post.permalink}`)
.setTimestamp(post.created_utc * 1000) .setTimestamp(post.created * 1000)
.setFooter(`${post.ups}`); .setFooter(`${post.ups}`);
} }
}; };
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "xiao", "name": "xiao",
"version": "94.1.1", "version": "94.1.2",
"description": "Your personal server companion.", "description": "Your personal server companion.",
"main": "Xiao.js", "main": "Xiao.js",
"scripts": { "scripts": {