GUACAMOLE-1218: Merge casing fix for hex values in ByteArrayProperty.

This commit is contained in:
James Muehlner
2021-09-16 19:32:09 -07:00
committed by GitHub

View File

@@ -39,7 +39,7 @@ public abstract class ByteArrayProperty implements GuacamoleProperty<byte[]> {
// Return value parsed from hex // Return value parsed from hex
try { try {
return BaseEncoding.base16().decode(value); return BaseEncoding.base16().decode(value.toUpperCase());
} }
// Fail parse if hex invalid // Fail parse if hex invalid