mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-05-08 16:46:57 +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()
|
private void connect()
|
||||||
{
|
{
|
||||||
final String server = config.getString("xmpp.server");
|
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");
|
LOGGER.log(Level.WARNING, "config broken for xmpp");
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue