Fix: returns the sorted proxy name

This commit is contained in:
gVisor bot 2018-08-07 14:45:24 +08:00
parent 74593dad19
commit 965c546336

View File

@ -2,6 +2,7 @@ package adapters
import (
"errors"
"sort"
C "github.com/Dreamacro/clash/constant"
)
@ -33,6 +34,7 @@ func (s *Selector) All() []string {
for k := range s.proxies {
all = append(all, k)
}
sort.Strings(all)
return all
}