diff options
| author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-08-31 23:00:54 +0200 |
|---|---|---|
| committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-08-31 23:00:54 +0200 |
| commit | 64500829878b9292b7305db2f38df2a7425539f2 (patch) | |
| tree | ded2e5734e301d0698e1607bfe39ce1458337a02 | |
| parent | 8167d3cac044bba0d75179b990cbfe0d4139c6f2 (diff) | |
little fix for google images engine
| -rw-r--r-- | searx/engines/google_images.py | 1 |
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 |