Fix history loading
This commit is contained in:
parent
6b1ff048b8
commit
36454fb90c
2
sdn.cpp
2
sdn.cpp
|
@ -1298,7 +1298,7 @@ fun load_bindings () {
|
||||||
}
|
}
|
||||||
|
|
||||||
fun load_history_level (const vector<string> &v) {
|
fun load_history_level (const vector<string> &v) {
|
||||||
if (v.size () != 6)
|
if (v.size () != 7)
|
||||||
return;
|
return;
|
||||||
// Not checking the hostname and parent PID right now since we can't merge
|
// Not checking the hostname and parent PID right now since we can't merge
|
||||||
g.levels.push_back ({stoi (v.at (4)), stoi (v.at (5)), v.at (3), v.at (6)});
|
g.levels.push_back ({stoi (v.at (4)), stoi (v.at (5)), v.at (3), v.at (6)});
|
||||||
|
|
Loading…
Reference in New Issue