Index: source/org/jivesoftware/smackx/muc/RoomInfo.java =================================================================== --- source/org/jivesoftware/smackx/muc/RoomInfo.java (revision 7012) +++ source/org/jivesoftware/smackx/muc/RoomInfo.java (working copy) @@ -90,10 +90,10 @@ Form form = Form.getFormFrom(info); if (form != null) { FormField descField = form.getField("muc#roominfo_description"); - this.description = descField == null ? "" : descField.getValues().next(); + this.description = ( descField == null || !(descField.getValues().hasNext()) )? "n/a" : descField.getValues().next(); FormField subjField = form.getField("muc#roominfo_subject"); - this.subject = subjField == null ? "" : subjField.getValues().next(); + this.subject = ( subjField == null || !(subjField.getValues().hasNext()) ) ? "n/a" : subjField.getValues().next(); FormField occCountField = form.getField("muc#roominfo_occupants"); this.occupantsCount = occCountField == null ? -1 : Integer.parseInt(occCountField.getValues()