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

Commit

Permalink
Compatibility with MultiSimTelephonyManager
Browse files Browse the repository at this point in the history
Fixes #732
  • Loading branch information
M66B committed Nov 10, 2013
1 parent bfc33ea commit 270ab84
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 @@ -10,6 +10,7 @@ Changelog
* Fix up navigation (again) ([issue](https://github.com/M66B/XPrivacy/issues/681))
* Auto import pro license file ([issue](https://github.com/M66B/XPrivacy/issues/703))
* Allow application specific disable of globally set randomization ([issue](https://github.com/M66B/XPrivacy/issues/706))
* Compatibility with *MultiSimTelephonyManager* ([issue](https://github.com/M66B/XPrivacy/issues/732))
* Restrict */sys/block/.../cid* and */sys/class/.../cid* ([issue](https://github.com/M66B/XPrivacy/issues/734))
* Restrict system properties ending with *cid* ([issue](https://github.com/M66B/XPrivacy/issues/734))
* Updated Slovak translation
Expand Down
2 changes: 1 addition & 1 deletion src/biz/bokhorst/xprivacy/Requirements.java
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private static boolean checkField(Object obj, String fieldName, Class<?> expecte
// Check field
if (field != null) {
Object value = field.get(obj);
if (value != null && expectedClass.isAssignableFrom(value.getClass()))
if (value == null || expectedClass.isAssignableFrom(value.getClass()))
return true;
}
} catch (Throwable ex) {
Expand Down

0 comments on commit 270ab84

Please sign in to comment.