3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-11-04 23:30:17 +01:00

Fix quotes breaking formatted message strings (#1118)

Dieser Commit ist enthalten in:
rtm516 2020-08-10 21:44:20 +01:00 committet von GitHub
Ursprung c7958af1db
Commit b84986a502
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

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