We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3229d7 commit b25f87aCopy full SHA for b25f87a
ChangeLog
@@ -1,3 +1,7 @@
1
+v4.2.x (xxxx-xx-xx)
2
+---------------------------
3
+* fixed ArangoDatabase.transaction(): ignore null result
4
+
5
v4.2.3 (2017-07-31)
6
---------------------------
7
* added ArangoDatabase.getPermissions(String)
src/main/java/com/arangodb/internal/InternalArangoDatabase.java
@@ -304,7 +304,7 @@ public T deserialize(final Response response) throws VPackException {
304
final VPackSlice body = response.getBody();
305
if (body != null) {
306
final VPackSlice result = body.get(ArangoDBConstants.RESULT);
307
- if (!result.isNone()) {
+ if (!result.isNone() && !result.isNull()) {
308
return util().deserialize(result, type);
309
}
310
0 commit comments