diff --git a/clients/android/NewsBlur/src/com/newsblur/database/FolderListAdapter.java b/clients/android/NewsBlur/src/com/newsblur/database/FolderListAdapter.java index 524cbd2dc..7616ee9cb 100644 --- a/clients/android/NewsBlur/src/com/newsblur/database/FolderListAdapter.java +++ b/clients/android/NewsBlur/src/com/newsblur/database/FolderListAdapter.java @@ -298,6 +298,9 @@ public class FolderListAdapter extends BaseExpandableListAdapter { if (! folderFeedMap.containsKey(folderName)) folderFeedMap.put(folderName, new ArrayList()); folderFeedMap.get(folderName).add(feedId); } + if (!folderFeedMap.containsKey(AppConstants.ROOT_FOLDER)) { + folderFeedMap.put(AppConstants.ROOT_FOLDER, new ArrayList()); + } recountFeeds(); notifyDataSetChanged(); }