Avoid recipient resolves in Recipient#getGroupName().

This commit is contained in:
Greyson Parrelli 2022-03-18 14:49:06 -04:00
parent 3e77975c17
commit 77caedb3bb

View file

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