Avoid recipient resolves in Recipient#getGroupName().
This commit is contained in:
parent
3e77975c17
commit
77caedb3bb
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue