1
0
mirror of https://github.com/searxng/searxng.git synced 2024-10-05 19:10:10 +02:00

[fix] searx.js null pointer exception when category div is missing

This commit is contained in:
MrPaulBlack 2021-09-22 21:41:19 +02:00
parent 12c90a1b47
commit 79351c2e4d

View File

@ -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() {