Skip to content

Commit

Permalink
Fix host of adb client on electron 25 (node 18)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhen0409 committed Jul 30, 2023
1 parent 9146b41 commit 7a01a43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/utils/adb.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import adb from 'adbkit'

export const client = adb.createClient()
export const client = adb.createClient({ host: '127.0.0.1' })

const reverse = (device, port) => client.reverse(device, `tcp:${port}`, `tcp:${port}`)

Expand Down

0 comments on commit 7a01a43

Please sign in to comment.