Skip to content
Snippets Groups Projects
Verified Commit fcb1c999 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

WIP: fix null value in lists (grpc)

parent 4043f3ff
Branches
Tags
2 merge requests!58REL: prepare release 0.7.2,!45F grpc f acm
Pipeline #17170 failed
...@@ -299,7 +299,7 @@ public class CaosDBToGrpcConverters { ...@@ -299,7 +299,7 @@ public class CaosDBToGrpcConverters {
} }
private ScalarValue convertScalarValue(final IndexedSingleValue v) { private ScalarValue convertScalarValue(final IndexedSingleValue v) {
if (v == null) { if (v == null || v.getWrapped() == null) {
return ScalarValue.newBuilder() return ScalarValue.newBuilder()
.setSpecialValue(SpecialValue.SPECIAL_VALUE_UNSPECIFIED) .setSpecialValue(SpecialValue.SPECIAL_VALUE_UNSPECIFIED)
.build(); .build();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment