SMACK-294: Improve handling for empty groups

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@11643 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Günther Niess 2010-02-18 14:33:45 +00:00 committed by niess
parent a441d856f8
commit 379b119d12
2 changed files with 5 additions and 2 deletions

View File

@ -233,7 +233,7 @@ public class Roster {
RosterPacket.Item item = new RosterPacket.Item(user, name);
if (groups != null) {
for (String group : groups) {
if (group != null) {
if (group != null && group.trim().length() > 0) {
item.addGroupName(group);
}
}

View File

@ -369,7 +369,10 @@ public class PacketParserUtils {
item.setItemType(type);
}
if (parser.getName().equals("group") && item!= null) {
item.addGroupName(parser.nextText());
final String groupName = parser.nextText();
if (groupName != null && groupName.trim().length() > 0) {
item.addGroupName(parser.nextText());
}
}
}
else if (eventType == XmlPullParser.END_TAG) {