1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-25 09:49:25 +00:00

Fix quotes breaking formatted message strings (#1118)

This commit is contained in:
rtm516
2020-08-10 21:44:20 +01:00
committed by GitHub
parent c7958af1db
commit b84986a502

View File

@@ -122,7 +122,7 @@ public class LanguageUtils {
formatString = key;
}
return MessageFormat.format(formatString.replace("&", "\u00a7"), values);
return MessageFormat.format(formatString.replace("'", "''").replace("&", "\u00a7"), values);
}
/**