Merge branch 'bug/handle-newline-mustache-replacement' into 'release'
Json serialisation fix : Double escape java to conserve \n See merge request theappsmith/internal-tools-server!246
This commit is contained in:
commit
b92557c480
|
|
@ -292,7 +292,7 @@ public class ActionServiceImpl extends BaseService<ActionRepository, Action, Str
|
||||||
else if (param.getValue() == null) {
|
else if (param.getValue() == null) {
|
||||||
param.setValue("");
|
param.setValue("");
|
||||||
} else {
|
} else {
|
||||||
String value = StringEscapeUtils.escapeJava(param.getValue());
|
String value = StringEscapeUtils.escapeJava(StringEscapeUtils.escapeJava(param.getValue()));
|
||||||
param.setValue(value);
|
param.setValue(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user