Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clientInfo error? #400

Open
Backxtar opened this issue Sep 26, 2021 · 2 comments
Open

clientInfo error? #400

Backxtar opened this issue Sep 26, 2021 · 2 comments

Comments

@Backxtar
Copy link

Backxtar commented Sep 26, 2021

i have this error:

`com.github.theholywaffle.teamspeak3.api.exception.TS3CommandFailedException: A "clientinfo" command returned with a server error.

invalid clientID (ID 512)
at com.github.theholywaffle.teamspeak3.api.CommandFuture.checkForFailure(CommandFuture.java:416)
at com.github.theholywaffle.teamspeak3.api.CommandFuture.getUninterruptibly(CommandFuture.java:357)
at com.github.theholywaffle.teamspeak3.TS3Api.getClientInfo(TS3Api.java:2027)
at de.backxtar.managers.EventManager$1.onClientJoin(EventManager.java:44)
at com.github.theholywaffle.teamspeak3.api.event.ClientJoinEvent.fire(ClientJoinEvent.java:176)
at com.github.theholywaffle.teamspeak3.EventManager$ListenerTask.run(EventManager.java:150)
at com.github.theholywaffle.teamspeak3.TS3Query.lambda$submitUserTask$0(TS3Query.java:282)
at com.github.theholywaffle.teamspeak3.TS3Query$$Lambda$41/0x0000000000000000.run(Unknown Source)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:823)
`

This is the code:

@Override
            public void onClientJoin(ClientJoinEvent clientJoinEvent) {
                try {
                    ClientInfo clientInfo = api.getClientInfo(clientJoinEvent.getClientId());
                    if (clientInfo.isServerQueryClient()) return;
                    Utils.changeInfo();
                    OnClientJoin.sendWelcome(clientJoinEvent);
                    OnClientJoin.gw2ApiReminder(clientJoinEvent);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
@Backxtar
Copy link
Author

why does this throws exceptions??

@astrolamb-gaming
Copy link

I recall having a similar issue; try using clientJoinEvent.getInvokerId() instead.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants