catch (Exception e) {} // Do nothing, will have to update the user to stop bad things from happening on query though
//write community to db
DbManager.getSocial().getCommunity().insert(selfCommunity.toDb());
//update user to be in this community
PersonCommunityPojo pcpSelf = new PersonCommunityPojo(person.get_id(), selfCommunity.getName());
person.getCommunities().add(pcpSelf);
/////////////////////////////////////////////////////////////////////////////////////////////////
// TODO (INF-1214): Make this code more robust to handle changes to the community that need to
// Caleb: this means change update to $set
/////////////////////////////////////////////////////////////////////////////////////////////////