Skip to content
Snippets Groups Projects
Commit c80eba0d authored by srosse's avatar srosse
Browse files

OO-2426: fix RS in auto completer if the command is null (IE rare issue)

parent ea8af5f5
No related branches found
No related tags found
No related merge requests found
......@@ -141,8 +141,8 @@ public class AutoCompleterController extends BasicController {
@Override
public void event(UserRequest ureq, Component source, Event event) {
if (source == myContent) {
if (event.getCommand().equals(COMMAND_SELECT)) {
List<String> selectedEntries = new ArrayList<String>(); // init empty result list
if (COMMAND_SELECT.equals(event.getCommand())) {
List<String> selectedEntries = new ArrayList<>(); // init empty result list
String key = ureq.getParameter(AutoCompleterMapper.PARAM_KEY);
if (key == null) {
// Fallback to submitted input field: the input field does not contain
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment