Skip to content
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.

Commit

Permalink
Fixed restriction Srv_startActivities
Browse files Browse the repository at this point in the history
Fixes #1853
  • Loading branch information
M66B committed Aug 6, 2014
1 parent 3630044 commit bdc6f1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Changelog

* Fixed alignment of the check boxes in the details view
* Added menu *Check for updates* (only [Pro license](http://www.xprivacy.eu/))
* Fixed restriction *Srv_startActivities* ([issue](/../../issues/1853))
* Updated Dutch translation
* Updated Simplified Chinese translation

Expand Down
2 changes: 1 addition & 1 deletion src/biz/bokhorst/xprivacy/XActivityManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ protected void before(XParam param) throws Throwable {
if (listIntent.size() == 0)
param.setResult(0); // ActivityManager.START_SUCCESS
else
param.args[2] = listIntent.toArray();
param.args[2] = listIntent.toArray(new Intent[0]);
}
break;

Expand Down

0 comments on commit bdc6f1b

Please sign in to comment.