use the util for getting channels
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 39s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 39s
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
package cc.fascinated.bat.features.welcomer;
|
||||
|
||||
import cc.fascinated.bat.common.ChannelUtils;
|
||||
import cc.fascinated.bat.common.Serializable;
|
||||
import cc.fascinated.bat.model.BatGuild;
|
||||
import cc.fascinated.bat.model.BatUser;
|
||||
@ -111,7 +112,7 @@ public class WelcomerProfile extends Serializable {
|
||||
}
|
||||
String channelId = document.getString("channelId");
|
||||
if (channelId != null) {
|
||||
TextChannel textChannel = DiscordService.JDA.getTextChannelById(channelId);
|
||||
TextChannel textChannel = ChannelUtils.getTextChannel(channelId);
|
||||
if (textChannel != null) {
|
||||
channel = textChannel;
|
||||
}
|
||||
|
Reference in New Issue
Block a user