mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
left joins instead of cross joins
This commit is contained in:
@@ -69,7 +69,7 @@ public class EntryREST extends AbstractResourceREST {
|
||||
|
||||
List<Entry> list = Lists.newArrayList();
|
||||
List<FeedEntryStatus> entriesStatus = feedEntryStatusDAO
|
||||
.findByKeywords(getUser(), keywords, offset, limit, true);
|
||||
.findByKeywords(getUser(), keywords, offset, limit);
|
||||
for (FeedEntryStatus status : entriesStatus) {
|
||||
list.add(Entry.build(status));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user