ConferenceState.prototype.getAttendeeByRtcid = function(rtcid) {
      return this.attendees.filter(function(attendee) {
          return attendee && attendee.rtcid === rtcid;
        })[0] || null;
    };