return an empty set if no items are found
This commit is contained in:
@@ -48,7 +48,7 @@ class FeedManager {
|
||||
}
|
||||
|
||||
public Set<FeedItem> getFeedItems(Persona persona) {
|
||||
feedItems.get(persona)
|
||||
feedItems.getOrDefault(persona, Collections.emptySet())
|
||||
}
|
||||
|
||||
public List<Feed> getFeedsToUpdate() {
|
||||
|
||||
Reference in New Issue
Block a user