tbel: encodeURI() decodeURI() == mdn 2
This commit is contained in:
parent
e488f71444
commit
2923c9dbd3
@ -662,7 +662,7 @@ public class TbUtils {
|
||||
for (String strKey : alKeys) {
|
||||
encodedMdnOpt = Optional.of(encodedMdnOpt.get().replaceAll(enCodeMdn.get(strKey), strKey));
|
||||
}
|
||||
return encodedMdnOpt.orElse(null) == null ? null : URLDecoder.decode(encodedMdnOpt.orElse(null), StandardCharsets.UTF_8);
|
||||
return encodedMdnOpt.orElse(null) == null ? null : URLDecoder.decode(encodedMdnOpt.get(), StandardCharsets.UTF_8);
|
||||
}
|
||||
|
||||
private static void parseRecursive(Object json, Map<String, Object> map, List<String> excludeList, String path, boolean pathInKey) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user