Include "chips" param in image search (#534)

"chips" is used in image tabs to pass the optional "filter" to add to the
given search term

Fixes #299
pull/552/head
Joao A. Candido Ramos 3 years ago committed by GitHub
parent 257b23e89e
commit 1f18e505ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -115,6 +115,11 @@ def gen_query(query, args, config, near_city=None) -> str:
if 'nfpr' in args:
param_dict['nfpr'] = '&nfpr=' + args.get('nfpr')
# 'chips' is used in image tabs to pass the optional 'filter' to add to the
# given search term
if 'chips' in args:
param_dict['chips'] = '&chips=' + args.get('chips')
param_dict['cr'] = ('&cr=' + config.ctry) if config.ctry else ''
param_dict['hl'] = '&hl=' + (
config.lang_interface.replace('lang_', '')

Loading…
Cancel
Save