mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Handle a string possibly being null (#2638)
An NPE can be thrown if message is null and `message.isBlank()` is called.
This commit is contained in:
parent
581c24f2e9
commit
b92b49b5e4
1 changed files with 3 additions and 0 deletions
|
@ -147,6 +147,9 @@ public class MessageTranslator {
|
|||
* @return Bedrock formatted message
|
||||
*/
|
||||
public static String convertMessageLenient(String message, String locale) {
|
||||
if (message == null) {
|
||||
return "";
|
||||
}
|
||||
if (message.isBlank()) {
|
||||
return message;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue