Skip to content

Commit

Permalink
Unbreak tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kegsay committed Jun 15, 2023
1 parent 702f778 commit 2a94a5a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sync3/handler/connstate.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ func (s *ConnState) load(ctx context.Context, req *sync3.Request) error {
if err != nil {
return err
}
s.loadPositions = loadPositions
for roomID, pos := range loadPositions {
s.loadPositions[roomID] = pos
}
rooms := make([]sync3.RoomConnMetadata, len(joinedRooms))
i := 0
for _, metadata := range joinedRooms {
Expand Down

0 comments on commit 2a94a5a

Please sign in to comment.