Specify charset explicitly on getBytes
Dieser Commit ist enthalten in:
Ursprung
d5408369ac
Commit
aae0c12d39
@ -39,7 +39,7 @@ index 3427e95e60..462ab49762 100644
|
|||||||
+ long byteAllowed = maxBookPageSize;
|
+ long byteAllowed = maxBookPageSize;
|
||||||
+ for (int i = 0; i < pageList.size(); ++i) {
|
+ for (int i = 0; i < pageList.size(); ++i) {
|
||||||
+ String testString = pageList.getString(i);
|
+ String testString = pageList.getString(i);
|
||||||
+ int byteLength = testString.getBytes().length;
|
+ int byteLength = testString.getBytes(java.nio.charset.StandardCharsets.UTF_8).length;
|
||||||
+ byteTotal += byteLength;
|
+ byteTotal += byteLength;
|
||||||
+ if (byteTotal > byteAllowed) {
|
+ if (byteTotal > byteAllowed) {
|
||||||
+ PlayerConnection.LOGGER.warn(this.player.getName() + " tried to send too large of a book. Book Size: " + byteTotal + " - Allowed: "+ byteAllowed + " - Pages: " + pageList.size());
|
+ PlayerConnection.LOGGER.warn(this.player.getName() + " tried to send too large of a book. Book Size: " + byteTotal + " - Allowed: "+ byteAllowed + " - Pages: " + pageList.size());
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren