mirror of
https://github.com/hoernschen/dendrite.git
synced 2024-12-26 15:08:28 +00:00
Push fixes
This commit is contained in:
parent
623b61b3c2
commit
19ee1a4f38
2 changed files with 7 additions and 3 deletions
|
@ -577,12 +577,14 @@ func SendJoin(
|
|||
// the response in situ.
|
||||
replaced := false
|
||||
for i := range stateAndAuthChainResponse.StateEvents {
|
||||
event := stateAndAuthChainResponse.StateEvents[i]
|
||||
stateEvent := stateAndAuthChainResponse.StateEvents[i]
|
||||
if event.Type() != gomatrixserverlib.MRoomMember {
|
||||
continue
|
||||
}
|
||||
if event.StateKeyEquals(*event.StateKey()) {
|
||||
stateAndAuthChainResponse.StateEvents[i] = event
|
||||
if stateEvent.StateKeyEquals(*event.StateKey()) {
|
||||
stateAndAuthChainResponse.StateEvents[i] = event.Headered(
|
||||
stateAndAuthChainResponse.RoomVersion,
|
||||
)
|
||||
replaced = true
|
||||
break
|
||||
}
|
||||
|
|
|
@ -209,6 +209,8 @@ func (r *FederationSenderInternalAPI) performJoinUsingServer(
|
|||
return fmt.Errorf("respMakeJoin.JoinEvent.Build: %w", err)
|
||||
}
|
||||
|
||||
fmt.Println("Join event:", event.EventID())
|
||||
|
||||
// No longer reuse the request context from this point forward.
|
||||
// We don't want the client timing out to interrupt the join.
|
||||
var cancel context.CancelFunc
|
||||
|
|
Loading…
Reference in a new issue