1
Fork 0
mirror of https://github.com/Quackster/Havana.git synced 2025-07-02 04:37:47 +00:00

Use ISO-8859-1 charset instead of UTF-8

This commit is contained in:
Quackster 2025-04-22 17:42:04 +10:00
parent 633758241e
commit 4eed29c0f9

View file

@ -136,7 +136,7 @@ public class StringUtil {
* @return the encoding
*/
public static Charset getCharset() {
return StandardCharsets.UTF_8;
return StandardCharsets.ISO_8859_1;
}
public static String isValidTag(String tag, int userId, int roomId, int groupId) {