server mouse fix

This commit is contained in:
Brad Stein 2025-06-12 02:08:39 -05:00
parent 80c22b9f6b
commit 1c3e3cd31c

View File

@ -43,8 +43,8 @@ impl Relay for Handler {
}
_ => {
let bad_len = match &msg.kind {
Some(navka::hid_report::Kind::KeyboardReport(v)) => v.len(),
Some(navka::hid_report::Kind::MouseReport(v)) => v.len(),
Some(hid_report::Kind::KeyboardReport(v)) => v.len(),
Some(hid_report::Kind::MouseReport(v)) => v.len(),
_ => 0,
};
error!("bad {:?} packet len={}", msg.kind, bad_len);