Fixed local image search pagination regression.

As reported by @tglman on issue #90, when searching images on the local
index only, pages next to the first were always empty. This was a
regression from commit c25e48e969.
pull/105/head
luccioman 8 years ago
parent 54ffd925dc
commit fc01b69eca

@ -250,6 +250,10 @@ public final class SearchEvent {
this.peers = peers;
this.workTables = workTables;
this.query = query;
if(query != null) {
/* Image counter will eventually grow up faster than offset, but must start first with the same value as query offset */
this.imagePageCounter = query.offset;
}
this.loader = loader;
this.nodeStack = new WeakPriorityBlockingQueue<URIMetadataNode>(max_results_node, false);
this.maxExpectedRemoteReferences = new AtomicInteger(0);
@ -1635,6 +1639,7 @@ public final class SearchEvent {
return null;
}
/** Image results counter */
private int imagePageCounter = 0;
private LinkedHashMap<String, ImageResult> imageViewed = new LinkedHashMap<String, ImageResult>();
private LinkedHashMap<String, ImageResult> imageSpareGood = new LinkedHashMap<String, ImageResult>();

Loading…
Cancel
Save