db controller fix
This commit is contained in:
parent
2fd2e4cfdb
commit
1c49e20cba
@ -103,7 +103,7 @@ public class DatabaseController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void saveAction(Map<String, String> params) {
|
private void saveAction(Map<String, String> params) {
|
||||||
String scriptBody = new String(HashUtils.decodeHexString(params.get("action_body_text")));
|
String scriptBody = params.get("action_body_text");
|
||||||
|
|
||||||
String name_text = new String(HashUtils.decodeHexString(params.get("action_name_text")));
|
String name_text = new String(HashUtils.decodeHexString(params.get("action_name_text")));
|
||||||
TextDataVal t1 = textDataValService.save(new TextDataVal(name_text));
|
TextDataVal t1 = textDataValService.save(new TextDataVal(name_text));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user