Fix 'input to Unique() must be sorted' panic

main
Neil Alexander 2020-05-07 17:14:32 +01:00
parent c8e11dfe53
commit 17d27331a3
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ func (r *FederationSenderInternalAPI) PerformJoin(
}
// Deduplicate the server names we were provided.
util.Unique(request.ServerNames)
util.SortAndUnique(request.ServerNames)
// Try each server that we were provided until we land on one that
// successfully completes the make-join send-join dance.
@ -159,7 +159,7 @@ func (r *FederationSenderInternalAPI) PerformLeave(
response *api.PerformLeaveResponse,
) (err error) {
// Deduplicate the server names we were provided.
util.Unique(request.ServerNames)
util.SortAndUnique(request.ServerNames)
// Try each server that we were provided until we land on one that
// successfully completes the make-leave send-leave dance.