Ignore the correct channel

This commit is contained in:
games647
2021-02-08 11:45:59 +01:00
parent 16f131ee2d
commit 465519eece
2 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ public class EncryptionUtil {
/**
* Decrypts the content and extracts the key spec.
*
* @param cipher decryption cipher initialized with the private key
* @param privateKey decryption cipher initialized with the private key
* @param sharedKey the encrypted shared key
* @return shared secret key
* @throws GeneralSecurityException if it fails to decrypt the data

View File

@ -38,7 +38,7 @@ public class PluginMessageListener implements Listener {
@EventHandler
public void onPluginMessage(PluginMessageEvent pluginMessageEvent) {
String channel = pluginMessageEvent.getTag();
if (pluginMessageEvent.isCancelled() || !channel.startsWith(plugin.getName().toLowerCase())) {
if (pluginMessageEvent.isCancelled() || !channel.startsWith(plugin.getName())) {
return;
}
@ -47,7 +47,7 @@ public class PluginMessageListener implements Listener {
pluginMessageEvent.setCancelled(true);
if (!(pluginMessageEvent.getSender() instanceof Server)) {
//check if the message is sent from the server
//check if the message is sent really from the server and not a malicious client
return;
}