param translation: fix too early return false (#22729)

Signed-off-by: Silvan Fuhrer <silvan@auterion.com>
This commit is contained in:
Silvan Fuhrer 2024-02-07 12:41:23 +01:00 committed by GitHub
parent 8df02de9fd
commit b303e9517f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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) {
@ -232,4 +230,6 @@ bool param_modify_on_import(bson_node_t node)
return true;
}
}
return false;
}