mirror of
https://github.com/searxng/searxng
synced 2024-11-03 09:40:20 +00:00
[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
|
||||
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';
|
||||
|
||||
searx.on('#categories input', 'change', function() {
|
||||
|
Loading…
Reference in New Issue
Block a user