You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes following error occurred when the client is disconnected and then reconnected.
Error: "The nick '" + userInfo.Nick + "' is being used by another user. Please select another one.
Sometimes, server don't know whether client is disconnected or connected.
To solve this issue:
Server will send check msg to clients every 10 sec.
Server will check client name because may be, client name is same previous connected clients.
a. if client name is same, Server will respond the above error.
Error: "The nick '" + userInfo.Nick + "' is being used by another user. Please select another one.
b. if client name is not same, Server will receive new user.
The text was updated successfully, but these errors were encountered:
Sometimes following error occurred when the client is disconnected and then reconnected.
Error: "The nick '" + userInfo.Nick + "' is being used by another user. Please select another one.
Sometimes, server don't know whether client is disconnected or connected.
To solve this issue:
a. if client name is same, Server will respond the above error.
Error: "The nick '" + userInfo.Nick + "' is being used by another user. Please select another one.
b. if client name is not same, Server will receive new user.
The text was updated successfully, but these errors were encountered: