Skip to content

Commit

Permalink
V4.1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
UrielCh committed Nov 8, 2022
1 parent f4831d9 commit 3faf7ad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## V4.1.17 (2022-11-08)
* fix typo in code

## V4.1.16 (2022-11-08)
* add `args` in interface StartServiceOptions can be a `string` or a `string[]`

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@u4/adbkit",
"version": "4.1.16",
"version": "4.1.17",
"description": "A Typescript client for the Android Debug Bridge.",
"keywords": [
"adb",
Expand Down
2 changes: 1 addition & 1 deletion src/adb/command/host-transport/startactivity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default class StartActivityCommand extends Command<boolean> {
}
if (options.args) {
if (typeof options.args === 'string')
args.push(this.escape(args));
args.push(this.escape(options.args));
else
for (const arg of options.args)
args.push(this.escape(arg));
Expand Down

0 comments on commit 3faf7ad

Please sign in to comment.