edited chunk size

This commit is contained in:
0xdcarns
2022-01-29 09:01:33 -05:00
parent 7c29f2454e
commit c40c905b3b
3 changed files with 6 additions and 5 deletions

View File

@@ -148,7 +148,6 @@ func Insert(key string, value string, tableName string) error {
if key != "" && value != "" && IsJSONString(value) {
return getCurrentDB()[INSERT].(func(string, string, string) error)(key, value, tableName)
} else {
logger.Log(0, "invalid json detected!!")
return errors.New("invalid insert " + key + " : " + value)
}
}