mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 03:38:28 +00:00
Fix XMPP metrics reporting
The XMPP config was being reported as valid when it wasn't valid.
This commit is contained in:
parent
1ba6c2a596
commit
8225e51867
1 changed files with 1 additions and 1 deletions
|
@ -316,6 +316,6 @@ public class XMPPManager extends Handler implements MessageListener, ChatManager
|
|||
|
||||
public boolean isConfigValid() {
|
||||
final String server = config.getString("xmpp.server");
|
||||
return server != null && server.equals("example.com");
|
||||
return server != null && !server.equals("example.com");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue