mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
Fix bug in a2f72dd9
This commit is contained in:
parent
a916b041b1
commit
163dabc498
@ -125,7 +125,7 @@ func (d *Database) GetJoinedHostsForRooms(ctx context.Context, roomIDs []string,
|
||||
if excludeSelf {
|
||||
for i, server := range servers {
|
||||
if d.IsLocalServerName(server) {
|
||||
copy(servers[:i], servers[i+1:])
|
||||
copy(servers[i:], servers[i+1:])
|
||||
servers = servers[:len(servers)-1]
|
||||
break
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user