We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edd2208 commit 6c4b663Copy full SHA for 6c4b663
src/interceptors/android/adb-commands.ts
@@ -48,7 +48,7 @@ export const getConnectedDevices = batchCalls(async (adbClient: adb.AdbClient) =
48
try {
49
const devices = await adbClient.listDevices();
50
return devices
51
- .filter(d => d.type !== 'offline')
+ .filter(d => d.type !== 'offline' && d.type !== 'unauthorized')
52
.map(d => d.id);
53
} catch (e) {
54
if (
0 commit comments