@Override
 protected SearchResult fromRssItemToSearchResult(Item item) {
   BitSnoopItem theItem = (BitSnoopItem) item;
   return new SearchResult(
       item.getTitle(),
       theItem.getEnclosureUrl(),
       item.getLink(),
       FileSizeConverter.getSize(theItem.getSize()),
       item.getPubdate(),
       theItem.getSeeders(),
       theItem.getLeechers());
 }