Fix error when searching for something that doesn't exist

This commit is contained in:
somebody
2022-11-19 20:26:27 -06:00
parent 308417da39
commit 1c9b40a84c

View File

@@ -5292,6 +5292,7 @@ process_cookies();
return;
} else if (finder_mode === "ui") {
let index = finder_selection_index >= 0 ? finder_selection_index : 0;
if (!actions[index]) return;
actions[index].click();
}
} else if (event.key === "ArrowUp") {