mirror of
https://github.com/hoernschen/dendrite.git
synced 2024-12-26 06:58:27 +00:00
MSC2716: Incremental existing history
Fix https://github.com/matrix-org/matrix-doc/blob/matthew/msc2716/proposals/2716-importing-history-into-existing-rooms.md
This commit is contained in:
parent
e1ace7e44a
commit
e8085a9493
1 changed files with 6 additions and 0 deletions
|
@ -52,6 +52,12 @@ func SendEvent(
|
|||
rsAPI api.RoomserverInternalAPI,
|
||||
txnCache *transactions.Cache,
|
||||
) util.JSONResponse {
|
||||
prevEvent := req.URL.Query().Get("prev_event")
|
||||
|
||||
util.GetLogger(req.Context()).WithFields(logrus.Fields{
|
||||
"prevEvent": prevEvent,
|
||||
}).Info("prevEvent")
|
||||
|
||||
verReq := api.QueryRoomVersionForRoomRequest{RoomID: roomID}
|
||||
verRes := api.QueryRoomVersionForRoomResponse{}
|
||||
if err := rsAPI.QueryRoomVersionForRoom(req.Context(), &verReq, &verRes); err != nil {
|
||||
|
|
Loading…
Reference in a new issue