mirror of https://github.com/zlatinb/muwire
return an empty set if no items are found
parent
e9f00c2995
commit
ed04c40420
|
@ -48,7 +48,7 @@ class FeedManager {
|
|||
}
|
||||
|
||||
public Set<FeedItem> getFeedItems(Persona persona) {
|
||||
feedItems.get(persona)
|
||||
feedItems.getOrDefault(persona, Collections.emptySet())
|
||||
}
|
||||
|
||||
public List<Feed> getFeedsToUpdate() {
|
||||
|
|
Loading…
Reference in New Issue