From a57a011e9491d68db511d611921f4b02a3a5974d Mon Sep 17 00:00:00 2001 From: Adam Tauber Date: Mon, 16 Mar 2015 12:48:53 +0100 Subject: [PATCH] [fix] remove ip plugin pre_search override - closes #275 --- searx/plugins/self_ip.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/searx/plugins/self_ip.py b/searx/plugins/self_ip.py index 0353be79..31c80f91 100644 --- a/searx/plugins/self_ip.py +++ b/searx/plugins/self_ip.py @@ -16,6 +16,4 @@ def pre_search(request, ctx): ip = request.remote_addr ctx['search'].answers.clear() ctx['search'].answers.add(ip) - # return False prevents exeecution of the original block - return False return True