public void updateShowInfoWithImage(ShowInfo showInfo, String image) {
   ShowInfo match = getShowInfo(showInfo.getId());
   Log.d("DEBUG", "In updateShowInfoWithImage in ShowsArrayAdapter");
   if (match != null) {
     match.setImage(image);
     match.updateShowInfo(showInfo);
     Log.d("DEBUG", "After match in updateShowInfoWithImage " + match.getAsString());
     this.notifyDataSetChanged();
   }
 }