Fix nil pointer crash in QueryMembershipsForRoom
This commit is contained in:
parent
3c419be6af
commit
01267a34b9
|
@ -241,6 +241,9 @@ func (r *Queryer) QueryMembershipsForRoom(
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if info == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
// If no sender is specified then we will just return the entire
|
||||
// set of memberships for the room, regardless of whether a specific
|
||||
|
|
Loading…
Reference in a new issue