Skip to content

Commit

Permalink
add cross_platform to filter
Browse files Browse the repository at this point in the history
  • Loading branch information
LXIF committed Jan 10, 2025
1 parent c462fdb commit ba69c6b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/frontend/src/utils/iiConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,9 @@ export class Connection {

if (HARDWARE_KEY_TEST.isEnabled()) {
devices = devices.filter(
(device) => Object.keys(device.key_type)[0] === "unknown"
(device) =>
Object.keys(device.key_type)[0] === "unknown" ||
Object.keys(device.key_type)[0] === "cross_platform"
);
}

Expand Down

0 comments on commit ba69c6b

Please sign in to comment.