Skip to content

Commit 864e551

Browse files
author
games647
committed
Disable verbose verification output
NameChange fix is resolved
1 parent 0a24d36 commit 864e551

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

bukkit/src/main/java/com/github/games647/fastlogin/bukkit/listener/protocollib/VerifyResponseTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ private void verifyResponse(BukkitLoginSession session) {
140140
Optional<Verification> response = resolver.hasJoined(requestedUsername, serverId, address);
141141
if (response.isPresent()) {
142142
Verification verification = response.get();
143-
plugin.getLog().info("Profile {} has a verified premium account: {}", requestedUsername, verification);
143+
plugin.getLog().info("Profile {} has a verified premium account", requestedUsername);
144144
String realUsername = verification.getName();
145145
if (realUsername == null) {
146146
disconnect("invalid-session", true, "Username field null for {}", requestedUsername);

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<dependency>
6868
<groupId>com.zaxxer</groupId>
6969
<artifactId>HikariCP</artifactId>
70-
<version>4.0.1</version>
70+
<version>4.0.3</version>
7171
</dependency>
7272

7373
<!--Logging framework implements slf4j which is required by hikari-->

core/src/main/java/com/github/games647/fastlogin/core/hooks/FloodgateHook.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
*/
2626
package com.github.games647.fastlogin.core.hooks;
2727

28-
import java.io.IOException;
29-
import java.util.Optional;
30-
3128
import com.github.games647.craftapi.model.Profile;
3229
import com.github.games647.craftapi.resolver.RateLimitException;
3330
import com.github.games647.fastlogin.core.shared.FastLoginCore;
3431
import com.github.games647.fastlogin.core.shared.LoginSource;
3532

33+
import java.io.IOException;
34+
import java.util.Optional;
35+
3636
import org.geysermc.floodgate.api.FloodgateApi;
3737
import org.geysermc.floodgate.api.player.FloodgatePlayer;
3838

@@ -106,7 +106,7 @@ public FloodgatePlayer getFloodgatePlayer(String username) {
106106
}
107107
}
108108
}
109+
109110
return null;
110111
}
111-
112112
}

0 commit comments

Comments
 (0)