mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
[FIX] Copy-paste в SetProfileResponse
This commit is contained in:
parent
8d979b3175
commit
d3343518f1
1 changed files with 2 additions and 1 deletions
|
@ -10,6 +10,7 @@
|
|||
import java.util.Collection;
|
||||
|
||||
public class SetProfileResponse implements JsonResponseInterface {
|
||||
public String client;
|
||||
@Override
|
||||
public String getType() {
|
||||
return "setProfile";
|
||||
|
@ -24,7 +25,7 @@ public void execute(WebSocketService service, ChannelHandlerContext ctx, Client
|
|||
}
|
||||
Collection<ClientProfile> profiles = LaunchServer.server.getProfiles();
|
||||
for (ClientProfile p : profiles) {
|
||||
if (p.getTitle().equals(client)) {
|
||||
if (p.getTitle().equals(this.client)) {
|
||||
if (!p.isWhitelistContains(client.username)) {
|
||||
service.sendObject(ctx, new WebSocketService.ErrorResult(LaunchServer.server.config.whitelistRejectString));
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue