Fix group update string when re-added to group.

master
Greyson Parrelli 2020-01-06 18:36:56 -05:00
parent 502e8559f0
commit 8f031f61ea
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ public class GroupUtil {
String title = groupContext.getName();
if (members != null) {
if (members != null && members.size() > 0) {
description.append("\n");
description.append(context.getResources().getQuantityString(R.plurals.GroupUtil_joined_the_group,
members.size(), toString(members)));