Skip to content

Commit

Permalink
client: fix msc4104 unstable prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Mar 5, 2025
1 parent 8c4920a commit 01d1e9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,7 @@ func (cli *Client) SendMassagedStateEvent(ctx context.Context, roomID id.RoomID,
}

func (cli *Client) UpdateDelayedEvent(ctx context.Context, req *ReqUpdateDelayedEvent) (resp *RespUpdateDelayedEvent, err error) {
urlPath := cli.BuildClientURL("v1", "delayed_events", req.DelayID)
urlPath := cli.BuildClientURL("unstable", "org.matrix.msc4140", "delayed_events", req.DelayID)
_, err = cli.MakeRequest(ctx, http.MethodPut, urlPath, req, &resp)
return
}
Expand Down

0 comments on commit 01d1e9d

Please sign in to comment.