aboutsummaryrefslogtreecommitdiff
path: root/roomserver/internal/query
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2022-05-26 15:08:17 +0100
committerNeil Alexander <neilalexander@users.noreply.github.com>2022-05-26 15:08:17 +0100
commitb541f3043f0ad8924547c540d9235d017d1792f6 (patch)
treeb55bddffc56871ddf9f2f6854a5cbeb1140f7933 /roomserver/internal/query
parent45c4c006721756595b12b41638a86ec803ee9fbd (diff)
Add support for MSC3787 and `org.matrix.msc3787` room version (update to matrix-org/gomatrixserverlib#310)
Diffstat (limited to 'roomserver/internal/query')
-rw-r--r--roomserver/internal/query/query.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/roomserver/internal/query/query.go b/roomserver/internal/query/query.go
index 70613baa..6d306fb0 100644
--- a/roomserver/internal/query/query.go
+++ b/roomserver/internal/query/query.go
@@ -772,7 +772,7 @@ func (r *Queryer) QueryRestrictedJoinAllowed(ctx context.Context, req *api.Query
}
// If the room version doesn't allow restricted joins then don't
// try to process any further.
- allowRestrictedJoins, err := roomInfo.RoomVersion.AllowRestrictedJoinsInEventAuth()
+ allowRestrictedJoins, err := roomInfo.RoomVersion.MayAllowRestrictedJoinsInEventAuth()
if err != nil {
return fmt.Errorf("roomInfo.RoomVersion.AllowRestrictedJoinsInEventAuth: %w", err)
} else if !allowRestrictedJoins {