Skip to content
Snippets Groups Projects
Commit a28da743 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Fix bug introduced in aecde406 (2018)

Properly read the index of the base, not of the base_code.
Fixes badly broken STATUS command.
parent 24927388
Branches
Tags
No related merge requests found
......@@ -1702,7 +1702,7 @@ var authenticated_command_handlers = {
if (saved_config[base_code] != undefined)
old_saved = saved_config[base_code];
read_cfg(base_code, true);
index = read_index(base_code);
index = read_index(base);
delete saved_config[base_code];
if (old_saved != undefined)
saved_config[base_code] = old_saved;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment