Avoid recipient resolves in Recipient#getGroupName().

fork-5.53.8
Greyson Parrelli 2022-03-18 14:49:06 -04:00
rodzic 3e77975c17
commit 77caedb3bb
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -503,7 +503,7 @@ public class Recipient {
}
return Util.join(names, ", ");
} else if (isMyStory()) {
} else if (!resolving && isMyStory()) {
return context.getString(R.string.Recipient_my_story);
} else {
return this.groupName;