geforkt von Mirrors/Paper
Include the plugin channel name in the exception message
By: Phoenix616 <mail@moep.tv>
Dieser Commit ist enthalten in:
Ursprung
5f1c3987ab
Commit
88399f1f47
@ -471,11 +471,11 @@ public class StandardMessenger implements Messenger {
|
||||
throw new ChannelNameTooLongException(channel);
|
||||
}
|
||||
if (channel.indexOf(':') == -1) {
|
||||
throw new IllegalArgumentException("Channel must contain : separator");
|
||||
throw new IllegalArgumentException("Channel must contain : separator (attempted to use " + channel + ")");
|
||||
}
|
||||
if (!channel.toLowerCase(Locale.ROOT).equals(channel)) {
|
||||
// TODO: use NamespacedKey validation here
|
||||
throw new IllegalArgumentException("Channel must be entirely lowercase");
|
||||
throw new IllegalArgumentException("Channel must be entirely lowercase (attempted to use " + channel + ")");
|
||||
}
|
||||
return channel;
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren