Skip to content

Commit

Permalink
Do not disconnect dummy devices
Browse files Browse the repository at this point in the history
Summary: Do not remove dummy devices as they are created during WWW cert exchange and are not picked up by IDB

Reviewed By: lblasa

Differential Revision: D39430458

fbshipit-source-id: 249efda23f324522ae2ae3a0ee4f198ab701d22d
  • Loading branch information
aigoncharov authored and facebook-github-bot committed Sep 12, 2022
1 parent ed40e16 commit 69812d5
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ export class IOSDeviceManager {
this.flipperServer
.getDevices()
.filter((device) => device.info.os === 'iOS')
.filter((device) => device.info.deviceType !== 'dummy')
.map((device) => device.serial),
);
console.debug(
Expand Down

0 comments on commit 69812d5

Please sign in to comment.