mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
make sure we have something to filter
This commit is contained in:
@@ -139,7 +139,7 @@ public class FeedRefreshUpdater {
|
|||||||
|
|
||||||
private void filterOldEntries() {
|
private void filterOldEntries() {
|
||||||
|
|
||||||
if (entries != null && entries.size() <= 50) {
|
if (entries != null && entries.size() > 0 && entries.size() <= 50) {
|
||||||
List<FeedEntry> keep = Lists.newArrayList();
|
List<FeedEntry> keep = Lists.newArrayList();
|
||||||
|
|
||||||
List<String> guids = Lists.newArrayList();
|
List<String> guids = Lists.newArrayList();
|
||||||
|
|||||||
Reference in New Issue
Block a user