@Override
public boolean input(JIDContext context, Protocol protocol) {
JID group = super.build(protocol.getTo());
String subject = room.build(group).pull(Dictionary.FIELD_SUBJECT, String.class);
if (subject != null) {
context.write(new Message().noneThread().subject(new Subject(subject)).setType(MessageType.GROUPCHAT).setFrom(group.resource(super.ourRelation(context.jid(), group).name())));
}
return true;
}