@Override
 public void sendClicked(String userInput) {
   EntryPanel peepList = peepLists.get(currentConvo);
   if (peepList != null) {
     List<String> selectedPeeps = peepList.getSelected();
     if (selectedPeeps.size() > 0) {
       for (String peep : selectedPeeps)
         if (!peep.equals(USERNAME)) CHAT_CLIENT.sendChatMessage(peep, userInput);
       return;
     }
   }
   CHAT_CLIENT.sendChatMessage(currentConvo, userInput);
 }