summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Pointhuber <thomas.pointhuber@gmx.at>2014-08-31 23:00:54 +0200
committerThomas Pointhuber <thomas.pointhuber@gmx.at>2014-08-31 23:00:54 +0200
commit64500829878b9292b7305db2f38df2a7425539f2 (patch)
treeded2e5734e301d0698e1607bfe39ce1458337a02
parent8167d3cac044bba0d75179b990cbfe0d4139c6f2 (diff)
little fix for google images engine
-rw-r--r--searx/engines/google_images.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/searx/engines/google_images.py b/searx/engines/google_images.py
index a6837f039..e810ee07d 100644
--- a/searx/engines/google_images.py
+++ b/searx/engines/google_images.py
@@ -8,6 +8,7 @@ categories = ['images']
url = 'https://ajax.googleapis.com/'
search_url = url + 'ajax/services/search/images?v=1.0&start={offset}&rsz=large&safe=off&filter=off&{query}' # noqa
+paging = True
def request(query, params):
offset = (params['pageno'] - 1) * 8