Selaa lähdekoodia

little fix for google images engine

Thomas Pointhuber 10 vuotta sitten
vanhempi
commit
6450082987
1 muutettua tiedostoa jossa 1 lisäystä ja 0 poistoa
  1. 1
    0
      searx/engines/google_images.py

+ 1
- 0
searx/engines/google_images.py Näytä tiedosto

@@ -8,6 +8,7 @@ categories = ['images']
8 8
 url = 'https://ajax.googleapis.com/'
9 9
 search_url = url + 'ajax/services/search/images?v=1.0&start={offset}&rsz=large&safe=off&filter=off&{query}'  # noqa
10 10
 
11
+paging = True
11 12
 
12 13
 def request(query, params):
13 14
     offset = (params['pageno'] - 1) * 8