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

Commit

Permalink
Fixed batch fetching system applications
Browse files Browse the repository at this point in the history
Closes #1048
  • Loading branch information
M66B committed Jan 1, 2014
1 parent ff980fa commit 39f9f86
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 @@ -16,6 +16,7 @@ Test and beta releases will have experimental functions enabled by default.

**Next release**

* Fixed batch fetching system applications ([issue](https://github.com/M66B/XPrivacy/issues/1042))
* Added grayed usage data icon to help
* Updated Chinese translation
* Updated Tagalog translation
Expand Down
2 changes: 1 addition & 1 deletion src/biz/bokhorst/xprivacy/ActivityShare.java
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ protected String doInBackground(Integer... params) {
// Process applications
for (ApplicationInfoEx appInfo : lstApp) {
mProgressCurrent++;
if (!appInfo.isSystem() || params[0] != null) {
if (!appInfo.isSystem() || params[0] != 0) {
publishProgress(appInfo.getPackageName().get(0), Integer.toString(mProgressCurrent));

JSONArray appName = new JSONArray();
Expand Down

0 comments on commit 39f9f86

Please sign in to comment.