mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 11:49:12 +00:00
Fix DiscordUtil#getOrCreateWebhook using webhooks without tokens
This commit is contained in:
parent
668c9634ca
commit
3f857e3183
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ public final class DiscordUtil {
|
||||||
final CompletableFuture<Webhook> future = new CompletableFuture<>();
|
final CompletableFuture<Webhook> future = new CompletableFuture<>();
|
||||||
channel.retrieveWebhooks().queue(webhooks -> {
|
channel.retrieveWebhooks().queue(webhooks -> {
|
||||||
for (final Webhook webhook : webhooks) {
|
for (final Webhook webhook : webhooks) {
|
||||||
if (webhook.getName().equals(webhookName)) {
|
if (webhook.getName().equals(webhookName) && webhook.getToken() != null) {
|
||||||
ACTIVE_WEBHOOKS.addIfAbsent(webhook.getId());
|
ACTIVE_WEBHOOKS.addIfAbsent(webhook.getId());
|
||||||
future.complete(webhook);
|
future.complete(webhook);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue