Send review messages to new channel

This commit is contained in:
Jordan Eldredge 2020-11-30 16:37:54 -05:00
parent 68dadec7ac
commit d23c806a35

View file

@ -47,7 +47,7 @@ export default class DiscordEventHandler {
if (skin == null) {
return;
}
const dest = await this.getChannel(Config.TWEET_BOT_CHANNEL_ID);
const dest = await this.getChannel(Config.SKIN_REVIEW_CHANNEL_ID);
await DiscordUtils.postSkin({
md5,
title: (filename) => `Approved by ${ctx.username}: ${filename}`,
@ -61,7 +61,7 @@ export default class DiscordEventHandler {
if (skin == null) {
return;
}
const dest = await this.getChannel(Config.TWEET_BOT_CHANNEL_ID);
const dest = await this.getChannel(Config.SKIN_REVIEW_CHANNEL_ID);
await DiscordUtils.postSkin({
md5,
title: (filename) => `Rejected by ${ctx.username}: ${filename}`,