Skip to content

Commit 65126d2

Browse files
authored
Fix entity response bug (#388)
1 parent cb79861 commit 65126d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Shared/Grpc/ProtoUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ internal static void ToEntityBatchRequest(
788788
FailureDetails = entityBatchResult.FailureDetails.ToProtobuf(),
789789
Actions = { entityBatchResult.Actions?.Select(a => a.ToOperationAction()) ?? [] },
790790
Results = { entityBatchResult.Results?.Select(a => a.ToOperationResult()) ?? [] },
791-
CompletionToken = completionToken,
791+
CompletionToken = completionToken ?? string.Empty,
792792
OperationInfos = { operationInfos ?? [] },
793793
};
794794
}

0 commit comments

Comments
 (0)