@Override
 protected int getUnreadCount() {
   Cursor folderCursor =
       contentResolver.query(
           FeedProvider.FOLDERS_URI.buildUpon().appendPath(folderName).build(),
           null,
           null,
           new String[] {DatabaseConstants.getFolderSelectionFromState(currentState)},
           null);
   int c = FeedUtils.getCursorUnreadCount(folderCursor, currentState);
   folderCursor.close();
   return c;
 }