mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 11:49:12 +00:00
Don't connect to example.com, the default value
This commit is contained in:
parent
8bb3a76366
commit
0731580cc9
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ public class XMPPManager extends Handler implements MessageListener, ChatManager
|
|||
private void connect()
|
||||
{
|
||||
final String server = config.getString("xmpp.server");
|
||||
if (server == null)
|
||||
if (server == null || server.equals("example.com"))
|
||||
{
|
||||
LOGGER.log(Level.WARNING, "config broken for xmpp");
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue