*Actually* fix inverted skeleton switch

This commit is contained in:
Riccardo Zaglia 2023-09-22 11:11:10 +08:00
parent 99dea1981d
commit d4780824ea
1 changed files with 1 additions and 1 deletions

View File

@ -774,7 +774,7 @@ fn try_connect(mut client_ips: HashMap<IpAddr, String>) -> ConResult {
let enable_skeleton = controllers_config
.as_ref()
.map(|c| !c.enable_skeleton)
.map(|c| c.enable_skeleton)
.unwrap_or(false);
let ffi_left_hand_skeleton = enable_skeleton
.then_some(left_hand_skeleton)