Update list mechanism

This commit is contained in:
d8ahazard
2016-10-25 17:51:34 -05:00
committed by topjohnwu
parent 1ec333ee5a
commit a5c39b829a
2 changed files with 65 additions and 33 deletions

View File

@@ -103,7 +103,7 @@ public class ApplicationAdapter extends ArrayAdapter<ApplicationInfo> {
Set<String> set = prefs.getStringSet("auto_blacklist", null);
if (set != null) {
for (String string : set) {
if (string.equals(appToCheck)) {
if (string.contains(appToCheck)) {
starter = true;
}
}