aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bridge/core/bridge.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/bridge/core/bridge.go b/bridge/core/bridge.go
index aa02ceb5..42730bf6 100644
--- a/bridge/core/bridge.go
+++ b/bridge/core/bridge.go
@@ -5,6 +5,7 @@ import (
"fmt"
"reflect"
"regexp"
+ "sort"
"strings"
"time"
@@ -48,6 +49,8 @@ func Targets() []string {
result = append(result, key)
}
+ sort.Strings(result)
+
return result
}