forked from Archive/PX4-Autopilot
mission: On an updated mission, don't assume per default that the mission is not valid, use the state from the last mission validation.
This commit is contained in:
parent
82962acd5c
commit
aa2c47a56b
|
@ -586,7 +586,7 @@ void
|
|||
Mission::update_mission()
|
||||
{
|
||||
|
||||
bool failed = true;
|
||||
bool failed = !_navigator->get_mission_result()->valid;
|
||||
|
||||
_dataman_cache.invalidate();
|
||||
_load_mission_index = -1;
|
||||
|
@ -653,6 +653,7 @@ Mission::update_mission()
|
|||
|
||||
} else {
|
||||
PX4_ERR("mission update failed");
|
||||
failed = true;
|
||||
}
|
||||
|
||||
if (failed) {
|
||||
|
|
Loading…
Reference in New Issue