mirror of https://github.com/searxng/searxng.git
[fix] searx.js null pointer exception when category div is missing
This commit is contained in:
parent
12c90a1b47
commit
79351c2e4d
|
@ -96,7 +96,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// vanilla js version of search_on_category_select.js
|
// vanilla js version of search_on_category_select.js
|
||||||
if (qinput !== null && searx.search_on_category_select) {
|
if (qinput !== null && d.querySelector('.help') != null && searx.search_on_category_select) {
|
||||||
d.querySelector('.help').className='invisible';
|
d.querySelector('.help').className='invisible';
|
||||||
|
|
||||||
searx.on('#categories input', 'change', function() {
|
searx.on('#categories input', 'change', function() {
|
||||||
|
|
Loading…
Reference in New Issue