Include membership events

This commit is contained in:
Neil Alexander 2021-01-18 16:23:37 +00:00
parent 6fd8459447
commit 10b43f86ed
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -401,16 +401,16 @@ func (p *PDUStreamProvider) filterStreamEventsAccordingToHistoryVisibility(
// Default at the start of the array // Default at the start of the array
sliceStart := 0 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 { if joinEventIndex != -1 {
sliceStart = joinEventIndex + 1 sliceStart = joinEventIndex
limited = false // so clients know not to try to backpaginate limited = false // so clients know not to try to backpaginate
} }
// Default to spanning the rest of the array // Default to spanning the rest of the array
sliceEnd := len(recentStreamEvents) 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 { if leaveEventIndex != -1 {
sliceEnd = leaveEventIndex sliceEnd = leaveEventIndex + 1
} }
events := make([]string, len(recentStreamEvents)) events := make([]string, len(recentStreamEvents))