This commit is contained in:
Skidder 2019-11-25 12:22:57 +01:00 committed by GitHub
parent 68f96a9508
commit f0b0491afc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -167,18 +167,6 @@ public class BotList {
// Discord Bots
Request discordbots = new Request.Builder()
.url(DiscordBots)
.post(body)
.addHeader("Authorization", config.getDiscordBotsToken())
.build();
try {
new OkHttpClient().newCall(discordbots).execute().close();
System.out.println("Successfully posted count to Discord Bots!");
} catch (IOException e) {
e.printStackTrace();
}
}
}