Fix unused stateKey variable

This commit is contained in:
Till Faelligen 2023-05-31 10:39:19 +02:00
parent 1e73175e27
commit 246836517c
No known key found for this signature in database
GPG key ID: ACCDC9606D472758

View file

@ -868,7 +868,7 @@ func (r *Queryer) QueryRoomInfo(ctx context.Context, roomID spec.RoomID) (*types
}
func (r *Queryer) CurrentStateEvent(ctx context.Context, roomID spec.RoomID, eventType string, stateKey string) (gomatrixserverlib.PDU, error) {
res, err := r.DB.GetStateEvent(ctx, roomID.String(), eventType, "")
res, err := r.DB.GetStateEvent(ctx, roomID.String(), eventType, stateKey)
if res == nil {
return nil, err
}