From 50f26a300254926c3d77e77be619a03961c343f8 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Mon, 20 Jan 2020 16:27:41 +0000 Subject: [PATCH] TODO: What to do with NextBatch here? --- syncapi/types/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncapi/types/types.go b/syncapi/types/types.go index 1abb9b5a5..9566b83f3 100644 --- a/syncapi/types/types.go +++ b/syncapi/types/types.go @@ -180,7 +180,7 @@ func NewResponse(pos SyncPosition) *Response { // Fill next_batch with a pagination token. Since this is a response to a sync request, we can assume // we'll always return a stream token. - res.NextBatch = NewPaginationTokenFromTypeAndPosition(PaginationTokenTypeStream, pos).String() + //res.NextBatch = NewPaginationTokenFromTypeAndPosition(PaginationTokenTypeStream, pos).String() return &res }