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

Commit

Permalink
Fetch user applications only by default
Browse files Browse the repository at this point in the history
Refs #1704
  • Loading branch information
M66B committed Jun 10, 2014
1 parent 7c0b50c commit 11c48b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Changelog

**Next release**

* Fetch user applications only by default

[Open issues](https://github.com/M66B/XPrivacy/issues?state=open)

**Version 2.0.31 TEST**
Expand Down
6 changes: 2 additions & 4 deletions src/biz/bokhorst/xprivacy/ActivityMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -733,10 +733,8 @@ private void optionFetch() {

Intent intent = new Intent(ActivityShare.ACTION_FETCH);
intent.putExtra(ActivityShare.cInteractive, true);
intent.putExtra(
ActivityShare.cUidList,
mAppAdapter == null ? new int[0] : mAppAdapter
.getSelectedOrVisibleUid(AppListAdapter.cSelectAppAll));
intent.putExtra(ActivityShare.cUidList,
mAppAdapter == null ? new int[0] : mAppAdapter.getSelectedOrVisibleUid(0));
startActivity(intent);
}
}
Expand Down

0 comments on commit 11c48b0

Please sign in to comment.