diff --git a/htroot/yacysearch.java b/htroot/yacysearch.java index 855b9ffbd..8e29fc3e3 100644 --- a/htroot/yacysearch.java +++ b/htroot/yacysearch.java @@ -267,13 +267,6 @@ public class yacysearch { // find search domain final Classification.ContentDomain contentdom = post == null || !post.containsKey("contentdom") ? ContentDomain.ALL : ContentDomain.contentdomParser(post.get("contentdom", "all")); - // patch until better search profiles are available - if (contentdom == ContentDomain.IMAGE && (itemsPerPage == 10 || itemsPerPage == 100)) { - itemsPerPage = 64; - } else if ( contentdom != ContentDomain.IMAGE && itemsPerPage > 50 && itemsPerPage < 100 ) { - itemsPerPage = 10; - } - // check the search tracker TreeSet trackerHandles = sb.localSearchTracker.get(client); if ( trackerHandles == null ) {