From 10b43f86ed47e02833550f07b8ac8b098fed6869 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Mon, 18 Jan 2021 16:23:37 +0000 Subject: [PATCH] Include membership events --- syncapi/streams/stream_pdu.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/syncapi/streams/stream_pdu.go b/syncapi/streams/stream_pdu.go index b453e7b6..d403d164 100644 --- a/syncapi/streams/stream_pdu.go +++ b/syncapi/streams/stream_pdu.go @@ -401,16 +401,16 @@ func (p *PDUStreamProvider) filterStreamEventsAccordingToHistoryVisibility( // Default at the start of the array sliceStart := 0 - // If there is a joinEvent, then cut all events earlier the join (exclude the join itself too) + // If there is a joinEvent, then cut all events earlier the join if joinEventIndex != -1 { - sliceStart = joinEventIndex + 1 + sliceStart = joinEventIndex limited = false // so clients know not to try to backpaginate } // Default to spanning the rest of the array sliceEnd := len(recentStreamEvents) - // If there is a leaveEvent, then cut all events after the person left (exclude the leave event too) + // If there is a leaveEvent, then cut all events after the person left if leaveEventIndex != -1 { - sliceEnd = leaveEventIndex + sliceEnd = leaveEventIndex + 1 } events := make([]string, len(recentStreamEvents))