sorted mutual follows list too in printProfile

This commit is contained in:
Vishal 2022-12-25 11:19:31 +05:30
parent f924ede1ad
commit 85515771d5

View File

@ -2276,6 +2276,7 @@ class Store {
stdout.write("* Of the $selfNumContacts people you follow, $numSecond follow $otherName.");
} else {
stdout.write("* Of the $selfNumContacts people you follow, $numSecond follow you back. Their names are: ");
mutualFollows.sort();
mutualFollows.forEach((name) { stdout.write("$name, ");});
}
print("");