Skip to content

Commit

Permalink
param translation: fix too early return false (#22729)
Browse files Browse the repository at this point in the history
Signed-off-by: Silvan Fuhrer <[email protected]>
  • Loading branch information
sfuhrer authored Feb 7, 2024
1 parent 8df02de commit b303e95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/parameters/param_translation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,6 @@ bool param_modify_on_import(bson_node_t node)
}
}

return false;

//2023-02-08: translate L1 parameters after removing l1 control
{
if (strcmp("RWTO_L1_PERIOD", node->name) == 0) {
Expand All @@ -232,4 +230,6 @@ bool param_modify_on_import(bson_node_t node)
return true;
}
}

return false;
}

0 comments on commit b303e95

Please sign in to comment.