Console: Fix rare IAE on destination sort

This commit is contained in:
zzz
2022-03-18 11:40:09 -04:00
parent c62884ef85
commit fc88d672c5

View File

@@ -587,7 +587,7 @@ public class SummaryHelper extends HelperBase {
}
buf.append("</h3><hr class=\"b\">");
if (!clients.isEmpty()) {
Collections.sort(clients, new AlphaComparator());
DataHelper.sort(clients, new AlphaComparator());
buf.append("<table id=\"sb_localtunnels\">");
for (Destination client : clients) {