Prevent crash

This commit is contained in:
M66B 2019-03-10 07:15:53 +00:00
parent 1f6a4a9bd8
commit ba2342d45f
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ class Core {
Long newid = null; Long newid = null;
if (EntityOperation.MOVE.equals(op.name) && if (EntityOperation.MOVE.equals(op.name) &&
jargs.length() > 2) jargs.length() > 2 && !jargs.isNull(2))
newid = jargs.getLong(2); newid = jargs.getLong(2);
if ((EntityOperation.ADD.equals(op.name) || if ((EntityOperation.ADD.equals(op.name) ||