0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-09-26 12:58:55 +02:00

Get all account data on CompleteSync

This commit is contained in:
Till Faelligen 2022-05-24 09:09:51 +02:00
parent b5a497a0c0
commit 44a3e566d8

View file

@ -2,6 +2,7 @@ package streams
import ( import (
"context" "context"
"math"
"github.com/matrix-org/dendrite/syncapi/types" "github.com/matrix-org/dendrite/syncapi/types"
userapi "github.com/matrix-org/dendrite/userapi/api" userapi "github.com/matrix-org/dendrite/userapi/api"
@ -30,7 +31,7 @@ func (p *AccountDataStreamProvider) CompleteSync(
ctx context.Context, ctx context.Context,
req *types.SyncRequest, req *types.SyncRequest,
) types.StreamPosition { ) types.StreamPosition {
return p.IncrementalSync(ctx, req, 0, p.LatestPosition(ctx)) return p.IncrementalSync(ctx, req, 0, math.MaxInt64)
} }
func (p *AccountDataStreamProvider) IncrementalSync( func (p *AccountDataStreamProvider) IncrementalSync(