Skip to content

Commit

Permalink
fix up the index never being set (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer authored Jul 1, 2024
1 parent cf50a1f commit 2f763bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ data class GRPCApiClient(

private fun cursorFromFFi(cursor: FfiCursor): Cursor {
return Cursor.newBuilder().also {
it.index.toBuilder().also { index ->
it.index = it.index.toBuilder().also { index ->
index.digest = cursor.digest.toByteString()
index.senderTimeNs = cursor.senderTimeNs.toLong()
}.build()
Expand Down

0 comments on commit 2f763bd

Please sign in to comment.