Skip to content

Commit 3faf7ad

Browse files
committed
V4.1.17
1 parent f4831d9 commit 3faf7ad

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
## V4.1.17 (2022-11-08)
4+
* fix typo in code
5+
36
## V4.1.16 (2022-11-08)
47
* add `args` in interface StartServiceOptions can be a `string` or a `string[]`
58

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@u4/adbkit",
3-
"version": "4.1.16",
3+
"version": "4.1.17",
44
"description": "A Typescript client for the Android Debug Bridge.",
55
"keywords": [
66
"adb",

src/adb/command/host-transport/startactivity.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default class StartActivityCommand extends Command<boolean> {
7878
}
7979
if (options.args) {
8080
if (typeof options.args === 'string')
81-
args.push(this.escape(args));
81+
args.push(this.escape(options.args));
8282
else
8383
for (const arg of options.args)
8484
args.push(this.escape(arg));

0 commit comments

Comments
 (0)